622 lines
17 KiB
Go
622 lines
17 KiB
Go
package tbsupervise
|
|
|
|
import (
|
|
"embed"
|
|
"fmt"
|
|
"io/fs"
|
|
"io/ioutil"
|
|
"log"
|
|
"net"
|
|
"os"
|
|
"os/exec"
|
|
"path"
|
|
"path/filepath"
|
|
"strings"
|
|
|
|
"github.com/mitchellh/go-ps"
|
|
"github.com/otiai10/copy"
|
|
cp "github.com/otiai10/copy"
|
|
tbget "i2pgit.org/idk/i2p.plugins.tor-manager/get"
|
|
)
|
|
|
|
// UNPACK_URL is the URL to place to unpack the Browser Bundle
|
|
var UNPACK_URL = tbget.UNPACK_PATH
|
|
|
|
// DEFAULT_TB_LANG is the default language to use for the Tor Browser Bundle
|
|
var DEFAULT_TB_LANG = tbget.DefaultIETFLang
|
|
|
|
// OS returns the current OS
|
|
func OS() string {
|
|
return tbget.OS
|
|
}
|
|
|
|
// ARCH returns the current architecture
|
|
func ARCH() string {
|
|
return tbget.ARCH
|
|
}
|
|
|
|
// Supervisor is the main struct for the Tor Browser Bundle Supervisor
|
|
type Supervisor struct {
|
|
UnpackPath string
|
|
Lang string
|
|
torcmd *exec.Cmd
|
|
//tbcmd *exec.Cmd
|
|
//ibcmd *exec.Cmd
|
|
Profile *embed.FS
|
|
PassThroughArgs []string
|
|
}
|
|
|
|
// PTAS is the validator for the pass-through arguments
|
|
func (s *Supervisor) PTAS() []string {
|
|
// loop over the arguments and make sure that we remove any --profile, -P args
|
|
// and blank them out.
|
|
var args []string
|
|
for index, arg := range s.PassThroughArgs {
|
|
if arg == "--profile" || arg == "-P" || arg == "-profile" {
|
|
continue
|
|
}
|
|
if index > 0 {
|
|
if s.PassThroughArgs[index-1] == "--profile" || s.PassThroughArgs[index-1] == "-P" || s.PassThroughArgs[index-1] == "-profile" {
|
|
continue
|
|
}
|
|
}
|
|
args = append(args, arg)
|
|
}
|
|
return args
|
|
}
|
|
|
|
// TBPath returns the path to the Tor Browser Bundle launcher
|
|
func (s *Supervisor) TBPath() string {
|
|
switch OS() {
|
|
case "linux":
|
|
return filepath.Join(s.UnpackPath, "Browser", "start-tor-browser")
|
|
case "osx":
|
|
return filepath.Join(s.UnpackPath, "Browser", "Tor Browser.app", "Contents", "MacOS", "start-tor-browser")
|
|
case "windows":
|
|
return filepath.Join(s.TBDirectory(), "firefox.exe")
|
|
default:
|
|
return filepath.Join(s.TBDirectory(), "firefox")
|
|
}
|
|
}
|
|
|
|
// FirefoxPath returns the path to the Firefox executable inside Tor Browser
|
|
func (s *Supervisor) FirefoxPath() string {
|
|
switch OS() {
|
|
case "linux":
|
|
return filepath.Join(s.UnpackPath, "Browser", "firefox.real")
|
|
case "windows":
|
|
return filepath.Join(s.UnpackPath, "Browser", "firefox.exe")
|
|
default:
|
|
return filepath.Join(s.UnpackPath, "Browser", "firefox")
|
|
}
|
|
}
|
|
|
|
// TBDirectory returns the path to the Tor Browser Bundle directory
|
|
func (s *Supervisor) TBDirectory() string {
|
|
return filepath.Join(s.UnpackPath, "Browser")
|
|
}
|
|
|
|
// TorPath returns the path to the Tor executable
|
|
func (s *Supervisor) TorPath() string {
|
|
if OS() == "osx" {
|
|
return filepath.Join(s.UnpackPath, "Tor Browser.app", "Contents", "Resources", "TorBrowser", "Tor", "tor")
|
|
}
|
|
return filepath.Join(s.UnpackPath, "Browser", "TorBrowser", "Tor", "tor")
|
|
}
|
|
|
|
// TorDataPath returns the path to the Tor Browser Bundle Data directory
|
|
func (s *Supervisor) TorDataPath() string {
|
|
return filepath.Join(s.UnpackPath, "Browser", "TorBrowser", "Data")
|
|
}
|
|
|
|
// I2PProfilePath returns the path to the I2P profile
|
|
func (s *Supervisor) I2PProfilePath() string {
|
|
fp := filepath.Join(filepath.Dir(s.UnpackPath), ".i2p.firefox")
|
|
if !tbget.FileExists(fp) {
|
|
log.Printf("i2p data not found at %s, unpacking", fp)
|
|
if s.Profile != nil {
|
|
if err := s.UnpackI2PData(); err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
}
|
|
}
|
|
return fp
|
|
}
|
|
|
|
// I2PProfilePath returns the path to the I2P profile
|
|
func (s *Supervisor) I2PAppProfilePath() string {
|
|
fp := filepath.Join(filepath.Dir(s.UnpackPath), ".i2p.firefox.config")
|
|
if !tbget.FileExists(fp) {
|
|
log.Printf("i2p app data not found at %s, unpacking", fp)
|
|
if s.Profile != nil {
|
|
if err := s.UnpackI2PAppData(); err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
}
|
|
}
|
|
return fp
|
|
}
|
|
|
|
// I2PDataPath returns the path to the I2P data directory
|
|
func (s *Supervisor) I2PDataPath() string {
|
|
fp := s.I2PProfilePath()
|
|
up := filepath.Join(filepath.Dir(s.UnpackPath), "i2p.firefox")
|
|
if tbget.FileExists(up) {
|
|
return up
|
|
}
|
|
log.Printf("i2p workdir not found at %s, copying", up)
|
|
if s.Profile != nil {
|
|
if err := cp.Copy(fp, up); err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
}
|
|
return up
|
|
}
|
|
|
|
// UnpackI2PData unpacks the I2P data into the s.UnpackPath
|
|
func (s *Supervisor) UnpackI2PData() error {
|
|
return fs.WalkDir(s.Profile, ".", func(embedpath string, d fs.DirEntry, err error) error {
|
|
fp := filepath.Join(filepath.Dir(s.UnpackPath), ".i2p.firefox")
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
fmt.Println(embedpath, filepath.Join(fp, strings.Replace(embedpath, "tor-browser/unpack/i2p.firefox", "", -1)))
|
|
if d.IsDir() {
|
|
os.MkdirAll(filepath.Join(fp, strings.Replace(embedpath, "tor-browser/unpack/i2p.firefox", "", -1)), 0755)
|
|
} else {
|
|
fullpath := path.Join(embedpath)
|
|
bytes, err := s.Profile.ReadFile(fullpath)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
unpack := filepath.Join(fp, strings.Replace(embedpath, "tor-browser/unpack/i2p.firefox", "", -1))
|
|
if err := ioutil.WriteFile(unpack, bytes, 0644); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
})
|
|
}
|
|
|
|
// I2PAppDataPath returns the path to the I2P application data directory
|
|
func (s *Supervisor) I2PAppDataPath() string {
|
|
fp := s.I2PAppProfilePath()
|
|
up := filepath.Join(filepath.Dir(s.UnpackPath), "i2p.firefox.config")
|
|
if tbget.FileExists(up) {
|
|
return up
|
|
}
|
|
log.Printf("i2p workdir not found at %s, copying", up)
|
|
if s.Profile != nil {
|
|
if err := cp.Copy(fp, up); err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
}
|
|
return up
|
|
}
|
|
|
|
// UnpackI2PAppData unpacks the I2P application data into the s.UnpackPath
|
|
func (s *Supervisor) UnpackI2PAppData() error {
|
|
return fs.WalkDir(s.Profile, ".", func(embedpath string, d fs.DirEntry, err error) error {
|
|
fp := filepath.Join(filepath.Dir(s.UnpackPath), ".i2p.firefox.config")
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
fmt.Println(embedpath, filepath.Join(fp, strings.Replace(embedpath, "tor-browser/unpack/i2p.firefox.config", "", -1)))
|
|
if d.IsDir() {
|
|
os.MkdirAll(filepath.Join(fp, strings.Replace(embedpath, "tor-browser/unpack/i2p.firefox.config", "", -1)), 0755)
|
|
} else {
|
|
fullpath := path.Join(embedpath)
|
|
bytes, err := s.Profile.ReadFile(fullpath)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
unpack := filepath.Join(fp, strings.Replace(embedpath, "tor-browser/unpack/i2p.firefox.config", "", -1))
|
|
if err := ioutil.WriteFile(unpack, bytes, 0644); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
})
|
|
}
|
|
|
|
func (s *Supervisor) tbbail() error {
|
|
return s.ibbail()
|
|
}
|
|
|
|
// RunTBWithLang runs the Tor Browser with the given language
|
|
func (s *Supervisor) RunTBWithLang() error {
|
|
tbget.ARCH = ARCH()
|
|
if s.Lang == "" {
|
|
s.Lang = DEFAULT_TB_LANG
|
|
}
|
|
if s.UnpackPath == "" {
|
|
s.UnpackPath = UNPACK_URL()
|
|
}
|
|
|
|
if s.tbbail() != nil {
|
|
return nil
|
|
}
|
|
|
|
log.Println("running tor browser with lang", s.Lang, s.UnpackPath, OS())
|
|
switch OS() {
|
|
case "linux":
|
|
if tbget.FileExists(s.UnpackPath) {
|
|
log.Println("running tor browser with lang", s.Lang, s.UnpackPath)
|
|
args := []string{}
|
|
args = append(args, s.PTAS()...)
|
|
bcmd := exec.Command(s.TBPath(), args...)
|
|
bcmd.Stdout = os.Stdout
|
|
bcmd.Stderr = os.Stderr
|
|
return bcmd.Run()
|
|
}
|
|
log.Println("tor browser not found at", s.TBPath())
|
|
return fmt.Errorf("tor browser not found at %s", s.TBPath())
|
|
case "osx":
|
|
firefoxPath := filepath.Join(s.UnpackPath, "Tor Browser.app", "Contents", "MacOS", "firefox")
|
|
bcmd := exec.Command(firefoxPath)
|
|
bcmd.Dir = s.UnpackPath
|
|
bcmd.Stdout = os.Stdout
|
|
bcmd.Stderr = os.Stderr
|
|
defer bcmd.Process.Kill()
|
|
return bcmd.Run()
|
|
case "win":
|
|
log.Println("Running Windows EXE", s.TBDirectory(), "firefox.exe")
|
|
args := []string{}
|
|
args = append(args, s.PTAS()...)
|
|
bcmd := exec.Command(s.TBPath(), args...)
|
|
bcmd.Dir = s.TBDirectory()
|
|
return bcmd.Run()
|
|
default:
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// RunTBWithLang runs the Tor Browser with the given language
|
|
func (s *Supervisor) RunTBHelpWithLang() error {
|
|
tbget.ARCH = ARCH()
|
|
if s.Lang == "" {
|
|
s.Lang = DEFAULT_TB_LANG
|
|
}
|
|
if s.UnpackPath == "" {
|
|
s.UnpackPath = UNPACK_URL()
|
|
}
|
|
|
|
if s.tbbail() != nil {
|
|
return nil
|
|
}
|
|
|
|
log.Println("running tor browser with lang", s.Lang, s.UnpackPath, OS())
|
|
switch OS() {
|
|
case "linux":
|
|
if tbget.FileExists(s.UnpackPath) {
|
|
log.Println("running tor browser with lang", s.Lang, s.UnpackPath)
|
|
bcmd := exec.Command(s.TBPath(), "--help")
|
|
bcmd.Stdout = os.Stdout
|
|
bcmd.Stderr = os.Stderr
|
|
return bcmd.Run()
|
|
}
|
|
log.Println("tor browser not found at", s.TBPath())
|
|
return fmt.Errorf("tor browser not found at %s", s.TBPath())
|
|
case "osx":
|
|
firefoxPath := filepath.Join(s.UnpackPath, "Tor Browser.app", "Contents", "MacOS", "firefox")
|
|
bcmd := exec.Command(firefoxPath, "--help")
|
|
bcmd.Stdout = os.Stdout
|
|
bcmd.Stderr = os.Stderr
|
|
bcmd.Dir = s.TBDirectory()
|
|
defer bcmd.Process.Kill()
|
|
return bcmd.Run()
|
|
case "win":
|
|
log.Println("Running Windows EXE", s.TBDirectory(), "firefox.exe")
|
|
bcmd := exec.Command(s.TBPath(), "--help")
|
|
bcmd.Dir = s.TBDirectory()
|
|
return bcmd.Run()
|
|
default:
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (s *Supervisor) ibbail() error {
|
|
processes, err := ps.Processes()
|
|
if err != nil {
|
|
return nil
|
|
}
|
|
for _, p := range processes {
|
|
if p.Executable() == s.TorPath() {
|
|
var err error
|
|
s.torcmd.Process, err = os.FindProcess(p.Pid())
|
|
if err == nil {
|
|
return fmt.Errorf("Already running")
|
|
}
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// RunI2PBWithLang runs the I2P Browser with the given language
|
|
func (s *Supervisor) RunI2PBWithLang() error {
|
|
if s.ibbail() != nil {
|
|
return nil
|
|
}
|
|
// export TOR_HIDE_BROWSER_LOGO=1
|
|
os.Setenv("TOR_HIDE_BROWSER_LOGO", "1")
|
|
return s.RunTBBWithProfile(s.I2PDataPath())
|
|
}
|
|
|
|
// RunI2PBAppWithLang runs the I2P Browser with the given language
|
|
func (s *Supervisor) RunI2PBAppWithLang() error {
|
|
if s.ibbail() != nil {
|
|
return nil
|
|
}
|
|
// export TOR_HIDE_BROWSER_LOGO=1
|
|
os.Setenv("TOR_HIDE_BROWSER_LOGO", "1")
|
|
return s.RunTBBWithOfflineClearnetProfile(s.I2PAppDataPath(), true, false)
|
|
}
|
|
|
|
func (s *Supervisor) GenerateClearnetProfile(profiledata string) error {
|
|
apath, err := filepath.Abs(profiledata)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
// see: https://github.com/Whonix/tb-starter/blob/b5d2280ad445bc1fbdb613424664bf8503e6f395/usr/share/secbrowser/variables.bsh
|
|
// export TOR_NO_DISPLAY_NETWORK_SETTINGS=1
|
|
os.Setenv("TOR_NO_DISPLAY_NETWORK_SETTINGS", "1")
|
|
// export TOR_HIDE_BROWSER_LOGO=1
|
|
os.Setenv("TOR_HIDE_BROWSER_LOGO", "1")
|
|
// export TOR_SKIP_CONTROLPORTTEST=1
|
|
os.Setenv("TOR_SKIP_CONTROLPORTTEST", "1")
|
|
// export TOR_SKIP_LAUNCH=1
|
|
os.Setenv("TOR_SKIP_LAUNCH", "1")
|
|
// export TOR_TRANSPROXY=1
|
|
os.Setenv("TOR_TRANSPROXY", "1")
|
|
|
|
odir := filepath.Join(apath, "extensions")
|
|
if err := os.MkdirAll(odir, 0755); err != nil {
|
|
return err
|
|
}
|
|
if !tbget.FileExists(filepath.Join(apath, "user.js")) {
|
|
err := ioutil.WriteFile(filepath.Join(apath, "user.js"), secbrowserjs, 0644)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
if !tbget.FileExists(filepath.Join(apath, "pref.js")) {
|
|
err := ioutil.WriteFile(filepath.Join(apath, "pref.js"), secbrowserjs, 0644)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
htmlfile := filepath.Join(apath, "index.html")
|
|
if !tbget.FileExists(htmlfile) {
|
|
err := ioutil.WriteFile(htmlfile, []byte(secbrowserhtml), 0644)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
opath := filepath.Join(odir, "uBlock0@raymondhill.net.xpi")
|
|
|
|
ipath := filepath.Join(filepath.Dir(s.UnpackPath), ".i2p.firefox", "extensions", "uBlock0@raymondhill.net.xpi")
|
|
if err := copy.Copy(ipath, opath); err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (s *Supervisor) CopyAWOXPI(profiledata string) error {
|
|
// export TOR_HIDE_BROWSER_LOGO=1
|
|
os.Setenv("TOR_HIDE_BROWSER_LOGO", "1")
|
|
apath, err := filepath.Abs(profiledata)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
odir := filepath.Join(apath, "extensions")
|
|
if err := os.MkdirAll(odir, 0755); err != nil {
|
|
return err
|
|
}
|
|
if !tbget.FileExists(filepath.Join(apath, "user.js")) {
|
|
err := ioutil.WriteFile(filepath.Join(apath, "user.js"), []byte("#\n"), 0644)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
if !tbget.FileExists(filepath.Join(apath, "pref.js")) {
|
|
err := ioutil.WriteFile(filepath.Join(apath, "pref.js"), []byte("#\n"), 0644)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
opath := filepath.Join(odir, "awo@eyedeekay.github.io.xpi")
|
|
|
|
htmlfile := filepath.Join(apath, "index.html")
|
|
if !tbget.FileExists(htmlfile) {
|
|
err := ioutil.WriteFile(htmlfile, []byte(offlinehtml), 0644)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
ipath := filepath.Join(filepath.Dir(s.UnpackPath), "awo@eyedeekay.github.io.xpi")
|
|
if err := copy.Copy(ipath, opath); err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// RunTBBWithOfflineProfile runs the I2P Browser with the given language
|
|
func (s *Supervisor) RunTBBWithOfflineClearnetProfile(profiledata string, offline, clearnet bool) error {
|
|
defaultpage := ""
|
|
if clearnet {
|
|
log.Print("Generating Clearnet Profile")
|
|
if err := s.GenerateClearnetProfile(profiledata); err != nil {
|
|
log.Println("Error generating Clearnet Profile", err)
|
|
return err
|
|
}
|
|
defaultpage = profiledata + "/index.html"
|
|
}
|
|
if offline {
|
|
if err := s.CopyAWOXPI(profiledata); err != nil {
|
|
log.Println("Error copying AWO XPI", err)
|
|
return err
|
|
}
|
|
if !strings.Contains(profiledata, "i2p") {
|
|
defaultpage = profiledata + "/index.html"
|
|
} else {
|
|
defaultpage = "http://127.0.0.1:7657/home"
|
|
}
|
|
}
|
|
tbget.ARCH = ARCH()
|
|
if s.Lang == "" {
|
|
s.Lang = DEFAULT_TB_LANG
|
|
}
|
|
if s.UnpackPath == "" {
|
|
s.UnpackPath = UNPACK_URL()
|
|
}
|
|
|
|
log.Println("running i2p in tor browser with lang", s.Lang, s.UnpackPath, OS())
|
|
switch OS() {
|
|
case "linux":
|
|
if tbget.FileExists(s.UnpackPath) {
|
|
args := []string{"--profile", profiledata, defaultpage}
|
|
args = append(args, s.PTAS()...)
|
|
log.Println("running Tor browser with lang and Custom Profile", s.Lang, s.UnpackPath, s.FirefoxPath(), args)
|
|
bcmd := exec.Command(s.FirefoxPath(), args...)
|
|
bcmd.Stdout = os.Stdout
|
|
bcmd.Stderr = os.Stderr
|
|
return bcmd.Run()
|
|
}
|
|
log.Println("tor browser not found at", s.FirefoxPath())
|
|
return fmt.Errorf("tor browser not found at %s", s.FirefoxPath())
|
|
case "osx":
|
|
firefoxPath := filepath.Join(s.UnpackPath, "Tor Browser.app", "Contents", "MacOS", "firefox")
|
|
args := []string{"--profile", profiledata, defaultpage}
|
|
args = append(args, s.PTAS()...)
|
|
log.Println("running Tor browser with lang and Custom Profile", s.Lang, s.UnpackPath, firefoxPath, args)
|
|
bcmd := exec.Command(firefoxPath, args...)
|
|
bcmd.Dir = profiledata
|
|
bcmd.Stdout = os.Stdout
|
|
bcmd.Stderr = os.Stderr
|
|
defer bcmd.Process.Kill()
|
|
return bcmd.Run()
|
|
case "win":
|
|
args := []string{"--profile", profiledata, defaultpage}
|
|
args = append(args, s.PTAS()...)
|
|
log.Println("running Tor browser with lang and Custom Profile", s.Lang, s.UnpackPath, s.TBPath(), args)
|
|
bcmd := exec.Command(s.TBPath(), args...)
|
|
bcmd.Dir = profiledata
|
|
bcmd.Stdout = os.Stdout
|
|
bcmd.Stderr = os.Stderr
|
|
return bcmd.Run()
|
|
default:
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// RunTBBWithProfile runs the I2P Browser with the given language
|
|
func (s *Supervisor) RunTBBWithProfile(profiledata string) error {
|
|
return s.RunTBBWithOfflineClearnetProfile(profiledata, false, false)
|
|
}
|
|
|
|
func (s *Supervisor) torbail() error {
|
|
_, err := net.Listen("tcp", "127.0.0.1:9050")
|
|
if err != nil {
|
|
log.Println("Already Running on 9050", err)
|
|
return fmt.Errorf("Already running")
|
|
}
|
|
if s.torcmd != nil && s.torcmd.Process != nil && s.torcmd.ProcessState != nil {
|
|
if s.torcmd.ProcessState.Exited() {
|
|
log.Println("Tor exited, restarting")
|
|
return nil
|
|
}
|
|
log.Println("Already Running")
|
|
return fmt.Errorf("Already running")
|
|
}
|
|
log.Println("Starting Tor")
|
|
return nil
|
|
}
|
|
|
|
// RunTorWithLang runs the Tor Exe with the given language
|
|
func (s *Supervisor) RunTorWithLang() error {
|
|
tbget.ARCH = ARCH()
|
|
if s.Lang == "" {
|
|
s.Lang = DEFAULT_TB_LANG
|
|
}
|
|
if s.UnpackPath == "" {
|
|
s.UnpackPath = UNPACK_URL()
|
|
}
|
|
if err := s.torbail(); err != nil {
|
|
return nil
|
|
}
|
|
|
|
log.Println("running tor with lang", s.Lang, s.UnpackPath)
|
|
switch OS() {
|
|
case "linux":
|
|
if tbget.FileExists(s.UnpackPath) {
|
|
log.Println("running tor with lang", s.Lang, s.UnpackPath)
|
|
s.torcmd = exec.Command(s.TorPath())
|
|
s.torcmd.Stdout = os.Stdout
|
|
s.torcmd.Stderr = os.Stderr
|
|
return s.torcmd.Run()
|
|
}
|
|
log.Println("tor not found at", s.TorPath())
|
|
return fmt.Errorf("tor not found at %s", s.TorPath())
|
|
case "osx":
|
|
torPath := filepath.Join(s.UnpackPath, "Tor Browser.app", "Contents", "Resources", "TorBrowser", "Tor", "tor")
|
|
s.torcmd = exec.Command(torPath)
|
|
s.torcmd.Dir = filepath.Dir(torPath)
|
|
s.torcmd.Stdout = os.Stdout
|
|
s.torcmd.Stderr = os.Stderr
|
|
defer s.torcmd.Process.Kill()
|
|
return s.torcmd.Run()
|
|
case "win":
|
|
log.Println("Running Windows EXE", filepath.Join(s.TBDirectory(), "TorBrowser", "Tor", "tor.exe"))
|
|
s.torcmd = exec.Command(filepath.Join(s.TBDirectory(), "TorBrowser", "Tor", "tor.exe"))
|
|
s.torcmd.Dir = s.TBDirectory()
|
|
return s.torcmd.Run()
|
|
default:
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// StopTor stops tor
|
|
func (s *Supervisor) StopTor() error {
|
|
return s.torcmd.Process.Kill()
|
|
}
|
|
|
|
// TorIsAlive returns true,true if tor is alive and belongs to us, true,false
|
|
// if it's alive and doesn't belong to us, false,false if no Tor can be found
|
|
func (s *Supervisor) TorIsAlive() (bool, bool) {
|
|
_, err := net.Listen("TCP", "127.0.0.1:9050")
|
|
if err != nil {
|
|
return true, false
|
|
}
|
|
if s.torcmd != nil && s.torcmd.Process != nil && s.torcmd.ProcessState != nil {
|
|
return !s.torcmd.ProcessState.Exited(), true
|
|
}
|
|
processes, err := ps.Processes()
|
|
if err != nil {
|
|
return false, true
|
|
}
|
|
for _, p := range processes {
|
|
if p.Executable() == s.TorPath() {
|
|
var err error
|
|
s.torcmd.Process, err = os.FindProcess(p.Pid())
|
|
if err == nil {
|
|
return true, true
|
|
}
|
|
}
|
|
}
|
|
return false, true
|
|
}
|
|
|
|
// NewSupervisor creates a new supervisor
|
|
func NewSupervisor(tbPath, lang string) *Supervisor {
|
|
return &Supervisor{
|
|
UnpackPath: tbPath,
|
|
Lang: lang,
|
|
}
|
|
}
|