2017-04-18 18:12:24 -04:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
"""
|
|
|
|
OnionShare | https://onionshare.org/
|
|
|
|
|
2018-04-24 13:07:59 -04:00
|
|
|
Copyright (C) 2014-2018 Micah Lee <micah@micahflee.com>
|
2017-04-18 18:12:24 -04:00
|
|
|
|
|
|
|
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/>.
|
|
|
|
"""
|
|
|
|
|
|
|
|
"""
|
|
|
|
This script downloads a pre-built tor binary to bundle with OnionShare.
|
|
|
|
In order to avoid a Mac gnupg dependency, I manually verify the signature
|
|
|
|
and hard-code the sha256 hash.
|
|
|
|
"""
|
|
|
|
|
2018-06-18 15:53:27 -04:00
|
|
|
import inspect
|
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
import hashlib
|
|
|
|
import zipfile
|
|
|
|
import io
|
|
|
|
import shutil
|
|
|
|
import subprocess
|
|
|
|
import requests
|
2017-04-18 18:12:24 -04:00
|
|
|
|
|
|
|
def main():
|
2019-09-15 20:55:30 -04:00
|
|
|
dmg_url = 'https://archive.torproject.org/tor-package-archive/torbrowser/8.5.5/TorBrowser-8.5.5-osx64_en-US.dmg'
|
|
|
|
dmg_filename = 'TorBrowser-8.5.5-osx64_en-US.dmg'
|
|
|
|
expected_dmg_sha256 = '9c1b7840bd251a4c52f0c919991e57cafb9178c55e11fa49f83ffacce3c20511'
|
2017-04-18 18:12:24 -04:00
|
|
|
|
|
|
|
# Build paths
|
|
|
|
root_path = os.path.dirname(os.path.dirname(os.path.abspath(inspect.getfile(inspect.currentframe()))))
|
|
|
|
working_path = os.path.join(root_path, 'build', 'tor')
|
2018-09-18 01:36:00 -04:00
|
|
|
dmg_tor_path = os.path.join('/Volumes', 'Tor Browser', 'Tor Browser.app', 'Contents')
|
2017-04-18 18:12:24 -04:00
|
|
|
dmg_path = os.path.join(working_path, dmg_filename)
|
|
|
|
dist_path = os.path.join(root_path, 'dist', 'OnionShare.app', 'Contents')
|
|
|
|
|
|
|
|
# Make sure the working folder exists
|
|
|
|
if not os.path.exists(working_path):
|
|
|
|
os.makedirs(working_path)
|
|
|
|
|
|
|
|
# Make sure the zip is downloaded
|
|
|
|
if not os.path.exists(dmg_path):
|
|
|
|
print("Downloading {}".format(dmg_url))
|
2018-06-18 15:53:27 -04:00
|
|
|
r = requests.get(dmg_url)
|
|
|
|
open(dmg_path, 'wb').write(r.content)
|
|
|
|
dmg_sha256 = hashlib.sha256(r.content).hexdigest()
|
2017-04-18 18:12:24 -04:00
|
|
|
else:
|
|
|
|
dmg_data = open(dmg_path, 'rb').read()
|
|
|
|
dmg_sha256 = hashlib.sha256(dmg_data).hexdigest()
|
|
|
|
|
|
|
|
# Compare the hash
|
|
|
|
if dmg_sha256 != expected_dmg_sha256:
|
|
|
|
print("ERROR! The sha256 doesn't match:")
|
|
|
|
print("expected: {}".format(expected_dmg_sha256))
|
|
|
|
print(" actual: {}".format(dmg_sha256))
|
|
|
|
sys.exit(-1)
|
|
|
|
|
|
|
|
# Mount the dmg, copy data to the working path
|
|
|
|
subprocess.call(['hdiutil', 'attach', dmg_path])
|
|
|
|
|
|
|
|
# Make sure Resources/tor exists before copying files
|
2017-05-18 14:22:50 -04:00
|
|
|
if os.path.exists(os.path.join(dist_path, 'Resources', 'Tor')):
|
|
|
|
shutil.rmtree(os.path.join(dist_path, 'Resources', 'Tor'))
|
|
|
|
os.makedirs(os.path.join(dist_path, 'Resources', 'Tor'))
|
|
|
|
if os.path.exists(os.path.join(dist_path, 'MacOS', 'Tor')):
|
|
|
|
shutil.rmtree(os.path.join(dist_path, 'MacOS', 'Tor'))
|
|
|
|
os.makedirs(os.path.join(dist_path, 'MacOS', 'Tor'))
|
|
|
|
|
|
|
|
# Modify the tor script to adjust the path
|
|
|
|
tor_script = open(os.path.join(dmg_tor_path, 'Resources', 'TorBrowser', 'Tor', 'tor'), 'r').read()
|
|
|
|
tor_script = tor_script.replace('../../../MacOS/Tor', '../../MacOS/Tor')
|
|
|
|
open(os.path.join(dist_path, 'Resources', 'Tor', 'tor'), 'w').write(tor_script)
|
2017-04-18 18:12:24 -04:00
|
|
|
|
|
|
|
# Copy into dist
|
2017-05-18 14:22:50 -04:00
|
|
|
shutil.copyfile(os.path.join(dmg_tor_path, 'Resources', 'TorBrowser', 'Tor', 'geoip'), os.path.join(dist_path, 'Resources', 'Tor', 'geoip'))
|
|
|
|
shutil.copyfile(os.path.join(dmg_tor_path, 'Resources', 'TorBrowser', 'Tor', 'geoip6'), os.path.join(dist_path, 'Resources', 'Tor', 'geoip6'))
|
|
|
|
os.chmod(os.path.join(dist_path, 'Resources', 'Tor', 'tor'), 0o755)
|
|
|
|
shutil.copyfile(os.path.join(dmg_tor_path, 'MacOS', 'Tor', 'tor.real'), os.path.join(dist_path, 'MacOS', 'Tor', 'tor.real'))
|
2018-09-18 01:36:00 -04:00
|
|
|
shutil.copyfile(os.path.join(dmg_tor_path, 'MacOS', 'Tor', 'libevent-2.1.6.dylib'), os.path.join(dist_path, 'MacOS', 'Tor', 'libevent-2.1.6.dylib'))
|
2017-05-18 14:22:50 -04:00
|
|
|
os.chmod(os.path.join(dist_path, 'MacOS', 'Tor', 'tor.real'), 0o755)
|
2018-01-14 20:49:29 -05:00
|
|
|
# obfs4proxy binary
|
|
|
|
shutil.copyfile(os.path.join(dmg_tor_path, 'MacOS', 'Tor', 'PluggableTransports', 'obfs4proxy'), os.path.join(dist_path, 'Resources', 'Tor', 'obfs4proxy'))
|
|
|
|
os.chmod(os.path.join(dist_path, 'Resources', 'Tor', 'obfs4proxy'), 0o755)
|
2017-04-18 18:12:24 -04:00
|
|
|
|
2018-01-19 01:29:35 -05:00
|
|
|
# Eject dmg
|
|
|
|
subprocess.call(['diskutil', 'eject', '/Volumes/Tor Browser'])
|
2017-04-18 18:12:24 -04:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|