aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/app/src/main/java/com/wireguard/android/backend/WgQuickBackend.java
diff options
context:
space:
mode:
authorSamuel Holland <samuel@sholland.org>2018-01-18 04:10:13 -0600
committerSamuel Holland <samuel@sholland.org>2018-01-18 04:10:58 -0600
commit23535c05779253677c7cb62fb22fdef15af0a8ba (patch)
tree34406f0c517c01314cc70be469485ff158b91ddd /app/src/main/java/com/wireguard/android/backend/WgQuickBackend.java
parentfragments: Be extra paranoid about the binding getting destroyed (diff)
downloadwireguard-android-23535c05779253677c7cb62fb22fdef15af0a8ba.tar.xz
wireguard-android-23535c05779253677c7cb62fb22fdef15af0a8ba.zip
WgQuickBackend: Always pass the full path to wg-quick
Signed-off-by: Samuel Holland <samuel@sholland.org>
Diffstat (limited to '')
-rw-r--r--app/src/main/java/com/wireguard/android/backend/WgQuickBackend.java41
1 files changed, 21 insertions, 20 deletions
diff --git a/app/src/main/java/com/wireguard/android/backend/WgQuickBackend.java b/app/src/main/java/com/wireguard/android/backend/WgQuickBackend.java
index 1391c722..907f5d6d 100644
--- a/app/src/main/java/com/wireguard/android/backend/WgQuickBackend.java
+++ b/app/src/main/java/com/wireguard/android/backend/WgQuickBackend.java
@@ -43,29 +43,18 @@ public final class WgQuickBackend implements Backend {
public Config applyConfig(final Tunnel tunnel, final Config config) throws Exception {
if (tunnel.getState() == State.UP) {
// Restart the tunnel to apply the new config.
- setState(tunnel, State.DOWN);
+ setStateInternal(tunnel, tunnel.getConfig(), State.DOWN);
try {
- bringUpTunnel(tunnel, config);
+ setStateInternal(tunnel, config, State.UP);
} catch (final Exception e) {
// The new configuration didn't work, so try to go back to the old one.
- bringUpTunnel(tunnel, tunnel.getConfig());
+ setStateInternal(tunnel, tunnel.getConfig(), State.UP);
throw e;
}
}
return config;
}
- private int bringUpTunnel(final Tunnel tunnel, final Config config) throws Exception {
- final File tempFile = new File(localTemporaryDir, tunnel.getName() + ".conf");
- try (FileOutputStream stream = new FileOutputStream(tempFile, false)) {
- stream.write(config.toString().getBytes(StandardCharsets.UTF_8));
- }
- final int result = rootShell.run(null, "wg-quick up '" + tempFile.getAbsolutePath() + '\'');
- if (!tempFile.delete())
- Log.w(TAG, "Couldn't delete temporary file after bringing up " + tunnel.getName());
- return result;
- }
-
@Override
public Set<String> enumerate() {
final List<String> output = new ArrayList<>();
@@ -103,14 +92,26 @@ public final class WgQuickBackend implements Backend {
throw new ModuleNotLoadedException("WireGuard module not loaded");
Log.d(TAG, "Changing tunnel " + tunnel.getName() + " to state " + state);
toolsInstaller.ensureToolsAvailable();
+ setStateInternal(tunnel, tunnel.getConfig(), state);
+ return getState(tunnel);
+ }
+
+ private void setStateInternal(final Tunnel tunnel, final Config config, final State state)
+ throws Exception {
+ final File tempFile = new File(localTemporaryDir, tunnel.getName() + ".conf");
final int result;
- if (state == State.UP)
- result = bringUpTunnel(tunnel, tunnel.getConfig());
- else
- result = rootShell.run(null, "wg-quick down '" + tunnel.getName() + '\'');
+ if (state == State.UP) {
+ try (FileOutputStream stream = new FileOutputStream(tempFile, false)) {
+ stream.write(config.toString().getBytes(StandardCharsets.UTF_8));
+ }
+ result = rootShell.run(null, "wg-quick up '" + tempFile.getAbsolutePath() + '\'');
+ } else {
+ result = rootShell.run(null, "wg-quick down '" + tempFile.getAbsolutePath() + '\'');
+ if (result == 0 && !tempFile.delete())
+ Log.w(TAG, "Couldn't delete temp config after bringing down " + tunnel.getName());
+ }
if (result != 0)
- throw new Exception("Unable to configure tunnel");
- return getState(tunnel);
+ throw new Exception("Unable to configure tunnel (wg-quick returned " + result + ')');
}
public static class ModuleNotLoadedException extends Exception {