summaryrefslogtreecommitdiffhomepage
path: root/app/src/main/java/com/wireguard/android/backend/WgQuickBackend.java
blob: af6bc77199ebdbaa3abc171048a21629e3f8d5fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
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;
import java.util.Arrays;
import java.util.LinkedList;
import java.util.List;

import java9.util.concurrent.CompletableFuture;
import java9.util.concurrent.CompletionStage;

/**
 * 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
    public CompletionStage<State> getState(final Tunnel tunnel) {
        Log.v(TAG, "Requested state for tunnel " + tunnel.getName());
        return asyncWorker.supplyAsync(() -> {
            final List<String> output = new LinkedList<>();
            final State state;
            if (rootShell.run(output, "wg show interfaces") != 0) {
                state = State.UNKNOWN;
            } else if (output.isEmpty()) {
                // There are no running interfaces.
                state = State.DOWN;
            } else {
                // wg puts all interface names on the same line. Split them into separate elements.
                final String[] names = output.get(0).split(" ");
                state = Arrays.asList(names).contains(tunnel.getName()) ? State.UP : State.DOWN;
            }
            Log.v(TAG, "Got state " + state + " for tunnel " + tunnel.getName());
            return state;
        });
    }

    @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);
    }
}