2018-01-01 09:06:37 +01:00
|
|
|
package com.wireguard.android.backend;
|
|
|
|
|
|
|
|
import android.content.Context;
|
|
|
|
import android.util.Log;
|
|
|
|
|
|
|
|
import com.wireguard.android.model.Tunnel;
|
|
|
|
import com.wireguard.android.model.Tunnel.State;
|
|
|
|
import com.wireguard.android.model.Tunnel.Statistics;
|
|
|
|
import com.wireguard.android.util.AsyncWorker;
|
|
|
|
import com.wireguard.android.util.RootShell;
|
|
|
|
import com.wireguard.config.Config;
|
|
|
|
|
|
|
|
import java.io.File;
|
|
|
|
import java.io.IOException;
|
2018-01-06 12:07:17 +01:00
|
|
|
import java.util.Collections;
|
2018-01-01 09:06:37 +01:00
|
|
|
import java.util.LinkedList;
|
|
|
|
import java.util.List;
|
2018-01-06 12:07:17 +01:00
|
|
|
import java.util.Set;
|
2018-01-01 09:06:37 +01:00
|
|
|
|
|
|
|
import java9.util.concurrent.CompletableFuture;
|
|
|
|
import java9.util.concurrent.CompletionStage;
|
2018-01-06 12:07:17 +01:00
|
|
|
import java9.util.stream.Collectors;
|
|
|
|
import java9.util.stream.Stream;
|
2018-01-01 09:06:37 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Created by samuel on 12/19/17.
|
|
|
|
*/
|
|
|
|
|
|
|
|
public final class WgQuickBackend implements Backend {
|
|
|
|
private static final String TAG = WgQuickBackend.class.getSimpleName();
|
|
|
|
|
|
|
|
private final AsyncWorker asyncWorker;
|
|
|
|
private final Context context;
|
|
|
|
private final RootShell rootShell;
|
|
|
|
|
|
|
|
public WgQuickBackend(final AsyncWorker asyncWorker, final Context context,
|
|
|
|
final RootShell rootShell) {
|
|
|
|
this.asyncWorker = asyncWorker;
|
|
|
|
this.context = context;
|
|
|
|
this.rootShell = rootShell;
|
|
|
|
}
|
|
|
|
|
|
|
|
private static State resolveState(final State currentState, State requestedState) {
|
|
|
|
if (requestedState == State.UNKNOWN)
|
|
|
|
throw new IllegalArgumentException("Requested unknown state");
|
|
|
|
if (requestedState == State.TOGGLE)
|
|
|
|
requestedState = currentState == State.UP ? State.DOWN : State.UP;
|
|
|
|
return requestedState;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public CompletionStage<Config> applyConfig(final Tunnel tunnel, final Config config) {
|
|
|
|
if (tunnel.getState() == State.UP)
|
|
|
|
return CompletableFuture.failedFuture(new UnsupportedOperationException("stub"));
|
|
|
|
return CompletableFuture.completedFuture(config);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2018-01-06 12:07:17 +01:00
|
|
|
public CompletionStage<Set<String>> enumerate() {
|
2018-01-01 09:06:37 +01:00
|
|
|
return asyncWorker.supplyAsync(() -> {
|
|
|
|
final List<String> output = new LinkedList<>();
|
2018-01-06 12:07:17 +01:00
|
|
|
// Don't throw an exception here or nothing will show up in the UI.
|
|
|
|
if (rootShell.run(output, "wg show interfaces") != 0 || output.isEmpty())
|
|
|
|
return Collections.emptySet();
|
|
|
|
// wg puts all interface names on the same line. Split them into separate elements.
|
|
|
|
return Stream.of(output.get(0).split(" "))
|
|
|
|
.collect(Collectors.toUnmodifiableSet());
|
2018-01-01 09:06:37 +01:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2018-01-06 12:07:17 +01:00
|
|
|
@Override
|
|
|
|
public CompletionStage<State> getState(final Tunnel tunnel) {
|
|
|
|
Log.v(TAG, "Requested state for tunnel " + tunnel.getName());
|
|
|
|
return enumerate().thenApply(set -> set.contains(tunnel.getName()) ? State.UP : State.DOWN);
|
|
|
|
}
|
|
|
|
|
2018-01-01 09:06:37 +01:00
|
|
|
@Override
|
|
|
|
public CompletionStage<Statistics> getStatistics(final Tunnel tunnel) {
|
|
|
|
return CompletableFuture.completedFuture(new Statistics());
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public CompletionStage<State> setState(final Tunnel tunnel, final State state) {
|
|
|
|
Log.v(TAG, "Requested state change to " + state + " for tunnel " + tunnel.getName());
|
|
|
|
return tunnel.getStateAsync().thenCompose(currentState -> asyncWorker.supplyAsync(() -> {
|
|
|
|
final String stateName = resolveState(currentState, state).name().toLowerCase();
|
|
|
|
final File file = new File(context.getFilesDir(), tunnel.getName() + ".conf");
|
|
|
|
final String path = file.getAbsolutePath();
|
|
|
|
// FIXME: Assumes file layout from FIleConfigStore. Use a temporary file.
|
|
|
|
if (rootShell.run(null, String.format("wg-quick %s '%s'", stateName, path)) != 0)
|
|
|
|
throw new IOException("wg-quick failed");
|
|
|
|
return tunnel;
|
|
|
|
})).thenCompose(this::getState);
|
|
|
|
}
|
|
|
|
}
|