summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorKali Kaneko (leap communications) <kali@leap.se>2017-06-01 02:50:43 +0200
committerKali Kaneko (leap communications) <kali@leap.se>2017-06-01 02:50:43 +0200
commit6f02e93d436f8c36f80453a042e406a041d24c4f (patch)
treee498a63e68d227721608177fd91baec77da07b2d /src
parentd82a57fdcf44a78127733b8db4cc434363ef607f (diff)
[feat] use vpncanary for osx
Diffstat (limited to 'src')
-rw-r--r--src/leap/bitmask/vpn/_control.py44
1 files changed, 18 insertions, 26 deletions
diff --git a/src/leap/bitmask/vpn/_control.py b/src/leap/bitmask/vpn/_control.py
index c0b748b4..8211e622 100644
--- a/src/leap/bitmask/vpn/_control.py
+++ b/src/leap/bitmask/vpn/_control.py
@@ -5,14 +5,14 @@ from twisted.internet.task import LoopingCall
from twisted.internet import reactor
from twisted.logger import Logger
-from .process import VPNProcess
-from .constants import IS_MAC
+from .process import VPNProcess, VPNCanary
+from .constants import IS_LINUX, IS_MAC
log = Logger()
# NOTE: We need to set a bigger poll time in OSX because it seems
# openvpn malfunctions when you ask it a lot of things in a short
-# amount of time.
+# amount of time. Check this!
POLL_TIME = 2.5 if IS_MAC else 1.0
@@ -52,14 +52,21 @@ class VPNControl(object):
self._user_stopped = False
self._stop_pollers()
- vpnproc = VPNProcess(
- self._vpnconfig, self._providerconfig, self._host,
- self._port, openvpn_verb=7, remotes=self._remotes,
- restartfun=self.restart)
-
- if vpnproc.get_openvpn_process():
- log.info('Another vpn process is running. Will try to stop it.')
- vpnproc.stop_if_already_running()
+ args = [self._vpnconfig, self._providerconfig, self._host,
+ self._port]
+ kwargs = {'openvpn_verb': 7, 'remotes': self._remotes,
+ 'restartfun': self.restart}
+
+ if IS_LINUX:
+ vpnproc = VPNProcess(*args, **kwargs)
+ if vpnproc.get_openvpn_process():
+ log.info('Another vpn process is running. Will try to stop it.')
+ vpnproc.stop_if_already_running()
+ elif IS_MAC:
+ # start the main vpn subprocess
+ vpnproc = VPNCanary(*args, **kwargs)
+ else:
+ raise Exception('This platform does not support VPN yet!')
try:
cmd = vpnproc.getCommand()
@@ -120,21 +127,6 @@ class VPNControl(object):
return True
- # FIXME -- is this used from somewhere???
- def bitmask_root_vpn_down(self):
- """
- Bring openvpn down using the privileged wrapper.
- """
- if IS_MAC:
- # We don't support Mac so far
- return True
- BM_ROOT = force_eval(linux.LinuxVPNLauncher.BITMASK_ROOT)
-
- # FIXME -- port to processProtocol
- exitCode = subprocess.call(["pkexec",
- BM_ROOT, "openvpn", "stop"])
- return True if exitCode is 0 else False
-
@property
def status(self):
if not self._vpnproc: