mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-12 18:59:06 +01:00
Compare commits
47 Commits
avoid-depr
...
nav-drawer
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
af469d7f27 | ||
|
|
0192b64dd3 | ||
|
|
aeb148c600 | ||
|
|
ac288b01d1 | ||
|
|
197b40647c | ||
|
|
9fc4bc838d | ||
|
|
89c227e2da | ||
|
|
4269bd4b74 | ||
|
|
cc7a19402e | ||
|
|
dc64c4148d | ||
|
|
e647ae7bb4 | ||
|
|
42776f56d0 | ||
|
|
559776b0f5 | ||
|
|
642485d7bd | ||
|
|
070be8621d | ||
|
|
2e42fb3c44 | ||
|
|
3f0f3746d7 | ||
|
|
c2dd61b006 | ||
|
|
5e37b3da22 | ||
|
|
8622f663f6 | ||
|
|
628b69d4eb | ||
|
|
b53319a7b0 | ||
|
|
98d4a48855 | ||
|
|
9184bf6afc | ||
|
|
4f2f145ab6 | ||
|
|
c945b3f611 | ||
|
|
0940b8d5b9 | ||
|
|
dac21cb3a0 | ||
|
|
9bfbb4d02d | ||
|
|
2689e5f361 | ||
|
|
d7d8af7e32 | ||
|
|
57a47463d6 | ||
|
|
8db481a17a | ||
|
|
2b9ffc7fbe | ||
|
|
0a5f93edf9 | ||
|
|
0aada89625 | ||
|
|
549cf4e2be | ||
|
|
c6981fb243 | ||
|
|
10791aea49 | ||
|
|
1c98d8f12a | ||
|
|
6bce4b76d2 | ||
|
|
c7565cb93e | ||
|
|
32288c376b | ||
|
|
1e7a1670dd | ||
|
|
850ad18a36 | ||
|
|
5d6ed1a724 | ||
|
|
ded1792213 |
@@ -11,8 +11,8 @@ android {
|
|||||||
defaultConfig {
|
defaultConfig {
|
||||||
minSdkVersion 16
|
minSdkVersion 16
|
||||||
targetSdkVersion 28
|
targetSdkVersion 28
|
||||||
versionCode 10207
|
versionCode 10205
|
||||||
versionName "1.2.7"
|
versionName "1.2.5"
|
||||||
consumerProguardFiles 'proguard-rules.txt'
|
consumerProguardFiles 'proguard-rules.txt'
|
||||||
|
|
||||||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||||||
@@ -38,7 +38,7 @@ configurations {
|
|||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation project(path: ':bramble-core', configuration: 'default')
|
implementation project(path: ':bramble-core', configuration: 'default')
|
||||||
tor 'org.briarproject:tor-android:0.3.5.10@zip'
|
tor 'org.briarproject:tor-android:0.3.5.9@zip'
|
||||||
tor 'org.briarproject:obfs4proxy-android:0.0.11-2@zip'
|
tor 'org.briarproject:obfs4proxy-android:0.0.11-2@zip'
|
||||||
|
|
||||||
annotationProcessor 'com.google.dagger:dagger-compiler:2.24'
|
annotationProcessor 'com.google.dagger:dagger-compiler:2.24'
|
||||||
|
|||||||
@@ -12,7 +12,6 @@ import org.briarproject.bramble.api.identity.IdentityManager;
|
|||||||
|
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
import java.util.HashSet;
|
import java.util.HashSet;
|
||||||
import java.util.List;
|
|
||||||
import java.util.Set;
|
import java.util.Set;
|
||||||
import java.util.logging.Logger;
|
import java.util.logging.Logger;
|
||||||
|
|
||||||
@@ -21,7 +20,6 @@ import javax.annotation.concurrent.GuardedBy;
|
|||||||
import javax.inject.Inject;
|
import javax.inject.Inject;
|
||||||
|
|
||||||
import static android.os.Build.VERSION.SDK_INT;
|
import static android.os.Build.VERSION.SDK_INT;
|
||||||
import static java.util.Arrays.asList;
|
|
||||||
import static java.util.logging.Level.INFO;
|
import static java.util.logging.Level.INFO;
|
||||||
import static org.briarproject.bramble.util.IoUtils.deleteFileOrDir;
|
import static org.briarproject.bramble.util.IoUtils.deleteFileOrDir;
|
||||||
import static org.briarproject.bramble.util.LogUtils.logFileOrDir;
|
import static org.briarproject.bramble.util.LogUtils.logFileOrDir;
|
||||||
@@ -32,12 +30,6 @@ class AndroidAccountManager extends AccountManagerImpl
|
|||||||
private static final Logger LOG =
|
private static final Logger LOG =
|
||||||
Logger.getLogger(AndroidAccountManager.class.getName());
|
Logger.getLogger(AndroidAccountManager.class.getName());
|
||||||
|
|
||||||
/**
|
|
||||||
* Directories that shouldn't be deleted when deleting the user's account.
|
|
||||||
*/
|
|
||||||
private static final List<String> PROTECTED_DIR_NAMES =
|
|
||||||
asList("cache", "code_cache", "lib", "shared_prefs");
|
|
||||||
|
|
||||||
protected final Context appContext;
|
protected final Context appContext;
|
||||||
private final SharedPreferences prefs;
|
private final SharedPreferences prefs;
|
||||||
|
|
||||||
@@ -89,7 +81,7 @@ class AndroidAccountManager extends AccountManagerImpl
|
|||||||
if (!prefs.edit().clear().commit())
|
if (!prefs.edit().clear().commit())
|
||||||
LOG.warning("Could not clear shared preferences");
|
LOG.warning("Could not clear shared preferences");
|
||||||
}
|
}
|
||||||
// Delete files, except protected directories
|
// Delete files, except lib and shared_prefs directories
|
||||||
Set<File> files = new HashSet<>();
|
Set<File> files = new HashSet<>();
|
||||||
File dataDir = getDataDir();
|
File dataDir = getDataDir();
|
||||||
@Nullable
|
@Nullable
|
||||||
@@ -98,12 +90,14 @@ class AndroidAccountManager extends AccountManagerImpl
|
|||||||
LOG.warning("Could not list files in app data dir");
|
LOG.warning("Could not list files in app data dir");
|
||||||
} else {
|
} else {
|
||||||
for (File file : fileArray) {
|
for (File file : fileArray) {
|
||||||
if (!PROTECTED_DIR_NAMES.contains(file.getName())) {
|
String name = file.getName();
|
||||||
|
if (!name.equals("lib") && !name.equals("shared_prefs")) {
|
||||||
files.add(file);
|
files.add(file);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
files.add(appContext.getFilesDir());
|
files.add(appContext.getFilesDir());
|
||||||
|
files.add(appContext.getCacheDir());
|
||||||
addIfNotNull(files, appContext.getExternalCacheDir());
|
addIfNotNull(files, appContext.getExternalCacheDir());
|
||||||
if (SDK_INT >= 19) {
|
if (SDK_INT >= 19) {
|
||||||
for (File file : appContext.getExternalCacheDirs()) {
|
for (File file : appContext.getExternalCacheDirs()) {
|
||||||
@@ -115,16 +109,12 @@ class AndroidAccountManager extends AccountManagerImpl
|
|||||||
addIfNotNull(files, file);
|
addIfNotNull(files, file);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// Clear the cache directory but don't delete it
|
|
||||||
File cacheDir = appContext.getCacheDir();
|
|
||||||
File[] children = cacheDir.listFiles();
|
|
||||||
if (children != null) files.addAll(asList(children));
|
|
||||||
for (File file : files) {
|
for (File file : files) {
|
||||||
if (LOG.isLoggable(INFO)) {
|
|
||||||
LOG.info("Deleting " + file.getAbsolutePath());
|
|
||||||
}
|
|
||||||
deleteFileOrDir(file);
|
deleteFileOrDir(file);
|
||||||
}
|
}
|
||||||
|
// Recreate the cache dir as some OpenGL drivers expect it to exist
|
||||||
|
if (!new File(dataDir, "cache").mkdirs())
|
||||||
|
LOG.warning("Could not recreate cache dir");
|
||||||
}
|
}
|
||||||
|
|
||||||
private File getDataDir() {
|
private File getDataDir() {
|
||||||
|
|||||||
@@ -6,8 +6,6 @@ import android.content.Context;
|
|||||||
import android.content.Intent;
|
import android.content.Intent;
|
||||||
import android.content.IntentFilter;
|
import android.content.IntentFilter;
|
||||||
import android.net.ConnectivityManager;
|
import android.net.ConnectivityManager;
|
||||||
import android.net.Network;
|
|
||||||
import android.net.NetworkCapabilities;
|
|
||||||
import android.net.NetworkInfo;
|
import android.net.NetworkInfo;
|
||||||
|
|
||||||
import org.briarproject.bramble.api.event.EventBus;
|
import org.briarproject.bramble.api.event.EventBus;
|
||||||
@@ -34,15 +32,11 @@ import static android.content.Intent.ACTION_SCREEN_OFF;
|
|||||||
import static android.content.Intent.ACTION_SCREEN_ON;
|
import static android.content.Intent.ACTION_SCREEN_ON;
|
||||||
import static android.net.ConnectivityManager.CONNECTIVITY_ACTION;
|
import static android.net.ConnectivityManager.CONNECTIVITY_ACTION;
|
||||||
import static android.net.ConnectivityManager.TYPE_WIFI;
|
import static android.net.ConnectivityManager.TYPE_WIFI;
|
||||||
import static android.net.NetworkCapabilities.NET_CAPABILITY_INTERNET;
|
|
||||||
import static android.net.NetworkCapabilities.TRANSPORT_WIFI;
|
|
||||||
import static android.net.wifi.p2p.WifiP2pManager.WIFI_P2P_THIS_DEVICE_CHANGED_ACTION;
|
|
||||||
import static android.os.Build.VERSION.SDK_INT;
|
import static android.os.Build.VERSION.SDK_INT;
|
||||||
import static android.os.PowerManager.ACTION_DEVICE_IDLE_MODE_CHANGED;
|
import static android.os.PowerManager.ACTION_DEVICE_IDLE_MODE_CHANGED;
|
||||||
import static java.util.concurrent.TimeUnit.MINUTES;
|
import static java.util.concurrent.TimeUnit.MINUTES;
|
||||||
import static java.util.concurrent.TimeUnit.SECONDS;
|
import static java.util.concurrent.TimeUnit.SECONDS;
|
||||||
import static java.util.logging.Level.INFO;
|
import static java.util.logging.Level.INFO;
|
||||||
import static org.briarproject.bramble.api.nullsafety.NullSafety.requireNonNull;
|
|
||||||
|
|
||||||
@MethodsNotNullByDefault
|
@MethodsNotNullByDefault
|
||||||
@ParametersNotNullByDefault
|
@ParametersNotNullByDefault
|
||||||
@@ -57,8 +51,7 @@ class AndroidNetworkManager implements NetworkManager, Service {
|
|||||||
|
|
||||||
private final ScheduledExecutorService scheduler;
|
private final ScheduledExecutorService scheduler;
|
||||||
private final EventBus eventBus;
|
private final EventBus eventBus;
|
||||||
private final Application app;
|
private final Context appContext;
|
||||||
private final ConnectivityManager connectivityManager;
|
|
||||||
private final AtomicReference<Future<?>> connectivityCheck =
|
private final AtomicReference<Future<?>> connectivityCheck =
|
||||||
new AtomicReference<>();
|
new AtomicReference<>();
|
||||||
private final AtomicBoolean used = new AtomicBoolean(false);
|
private final AtomicBoolean used = new AtomicBoolean(false);
|
||||||
@@ -70,9 +63,7 @@ class AndroidNetworkManager implements NetworkManager, Service {
|
|||||||
EventBus eventBus, Application app) {
|
EventBus eventBus, Application app) {
|
||||||
this.scheduler = scheduler;
|
this.scheduler = scheduler;
|
||||||
this.eventBus = eventBus;
|
this.eventBus = eventBus;
|
||||||
this.app = app;
|
this.appContext = app.getApplicationContext();
|
||||||
connectivityManager = (ConnectivityManager)
|
|
||||||
requireNonNull(app.getSystemService(CONNECTIVITY_SERVICE));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@@ -85,35 +76,26 @@ class AndroidNetworkManager implements NetworkManager, Service {
|
|||||||
filter.addAction(ACTION_SCREEN_ON);
|
filter.addAction(ACTION_SCREEN_ON);
|
||||||
filter.addAction(ACTION_SCREEN_OFF);
|
filter.addAction(ACTION_SCREEN_OFF);
|
||||||
filter.addAction(WIFI_AP_STATE_CHANGED_ACTION);
|
filter.addAction(WIFI_AP_STATE_CHANGED_ACTION);
|
||||||
filter.addAction(WIFI_P2P_THIS_DEVICE_CHANGED_ACTION);
|
|
||||||
if (SDK_INT >= 23) filter.addAction(ACTION_DEVICE_IDLE_MODE_CHANGED);
|
if (SDK_INT >= 23) filter.addAction(ACTION_DEVICE_IDLE_MODE_CHANGED);
|
||||||
app.registerReceiver(networkStateReceiver, filter);
|
appContext.registerReceiver(networkStateReceiver, filter);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void stopService() {
|
public void stopService() {
|
||||||
if (networkStateReceiver != null) {
|
if (networkStateReceiver != null)
|
||||||
app.unregisterReceiver(networkStateReceiver);
|
appContext.unregisterReceiver(networkStateReceiver);
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public NetworkStatus getNetworkStatus() {
|
public NetworkStatus getNetworkStatus() {
|
||||||
if (SDK_INT >= 23) {
|
ConnectivityManager cm = (ConnectivityManager)
|
||||||
Network net = connectivityManager.getActiveNetwork();
|
appContext.getSystemService(CONNECTIVITY_SERVICE);
|
||||||
if (net == null) return new NetworkStatus(false, false);
|
if (cm == null) throw new AssertionError();
|
||||||
NetworkCapabilities caps =
|
NetworkInfo net = cm.getActiveNetworkInfo();
|
||||||
connectivityManager.getNetworkCapabilities(net);
|
boolean connected = net != null && net.isConnected();
|
||||||
if (caps == null) return new NetworkStatus(false, false);
|
boolean wifi = connected && net.getType() == TYPE_WIFI;
|
||||||
boolean connected = caps.hasCapability(NET_CAPABILITY_INTERNET);
|
return new NetworkStatus(connected, wifi);
|
||||||
boolean wifi = caps.hasTransport(TRANSPORT_WIFI);
|
|
||||||
return new NetworkStatus(connected, wifi);
|
|
||||||
} else {
|
|
||||||
NetworkInfo net = connectivityManager.getActiveNetworkInfo();
|
|
||||||
boolean connected = net != null && net.isConnected();
|
|
||||||
boolean wifi = connected && net.getType() == TYPE_WIFI;
|
|
||||||
return new NetworkStatus(connected, wifi);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private void updateConnectionStatus() {
|
private void updateConnectionStatus() {
|
||||||
@@ -154,8 +136,7 @@ class AndroidNetworkManager implements NetworkManager, Service {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private boolean isApEvent(@Nullable String action) {
|
private boolean isApEvent(@Nullable String action) {
|
||||||
return WIFI_AP_STATE_CHANGED_ACTION.equals(action) ||
|
return WIFI_AP_STATE_CHANGED_ACTION.equals(action);
|
||||||
WIFI_P2P_THIS_DEVICE_CHANGED_ACTION.equals(action);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -9,7 +9,6 @@ import android.content.Context;
|
|||||||
import android.content.Intent;
|
import android.content.Intent;
|
||||||
import android.content.IntentFilter;
|
import android.content.IntentFilter;
|
||||||
|
|
||||||
import org.briarproject.bramble.api.io.TimeoutMonitor;
|
|
||||||
import org.briarproject.bramble.api.nullsafety.MethodsNotNullByDefault;
|
import org.briarproject.bramble.api.nullsafety.MethodsNotNullByDefault;
|
||||||
import org.briarproject.bramble.api.nullsafety.ParametersNotNullByDefault;
|
import org.briarproject.bramble.api.nullsafety.ParametersNotNullByDefault;
|
||||||
import org.briarproject.bramble.api.plugin.Backoff;
|
import org.briarproject.bramble.api.plugin.Backoff;
|
||||||
@@ -25,13 +24,13 @@ import java.io.IOException;
|
|||||||
import java.security.SecureRandom;
|
import java.security.SecureRandom;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.Collection;
|
import java.util.Collection;
|
||||||
|
import java.util.Collections;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.UUID;
|
import java.util.UUID;
|
||||||
import java.util.concurrent.BlockingQueue;
|
import java.util.concurrent.BlockingQueue;
|
||||||
import java.util.concurrent.ExecutionException;
|
import java.util.concurrent.ExecutionException;
|
||||||
import java.util.concurrent.Executor;
|
import java.util.concurrent.Executor;
|
||||||
import java.util.concurrent.LinkedBlockingQueue;
|
import java.util.concurrent.LinkedBlockingQueue;
|
||||||
import java.util.concurrent.ScheduledExecutorService;
|
|
||||||
import java.util.logging.Logger;
|
import java.util.logging.Logger;
|
||||||
|
|
||||||
import javax.annotation.Nullable;
|
import javax.annotation.Nullable;
|
||||||
@@ -48,10 +47,7 @@ import static android.bluetooth.BluetoothAdapter.SCAN_MODE_NONE;
|
|||||||
import static android.bluetooth.BluetoothAdapter.STATE_OFF;
|
import static android.bluetooth.BluetoothAdapter.STATE_OFF;
|
||||||
import static android.bluetooth.BluetoothAdapter.STATE_ON;
|
import static android.bluetooth.BluetoothAdapter.STATE_ON;
|
||||||
import static android.bluetooth.BluetoothDevice.ACTION_FOUND;
|
import static android.bluetooth.BluetoothDevice.ACTION_FOUND;
|
||||||
import static android.bluetooth.BluetoothDevice.DEVICE_TYPE_LE;
|
|
||||||
import static android.bluetooth.BluetoothDevice.EXTRA_DEVICE;
|
import static android.bluetooth.BluetoothDevice.EXTRA_DEVICE;
|
||||||
import static android.os.Build.VERSION.SDK_INT;
|
|
||||||
import static java.util.Collections.shuffle;
|
|
||||||
import static java.util.concurrent.TimeUnit.MILLISECONDS;
|
import static java.util.concurrent.TimeUnit.MILLISECONDS;
|
||||||
import static java.util.logging.Level.INFO;
|
import static java.util.logging.Level.INFO;
|
||||||
import static java.util.logging.Level.WARNING;
|
import static java.util.logging.Level.WARNING;
|
||||||
@@ -67,7 +63,6 @@ class AndroidBluetoothPlugin extends BluetoothPlugin<BluetoothServerSocket> {
|
|||||||
|
|
||||||
private static final int MAX_DISCOVERY_MS = 10_000;
|
private static final int MAX_DISCOVERY_MS = 10_000;
|
||||||
|
|
||||||
private final ScheduledExecutorService scheduler;
|
|
||||||
private final AndroidExecutor androidExecutor;
|
private final AndroidExecutor androidExecutor;
|
||||||
private final Context appContext;
|
private final Context appContext;
|
||||||
private final Clock clock;
|
private final Clock clock;
|
||||||
@@ -79,14 +74,11 @@ class AndroidBluetoothPlugin extends BluetoothPlugin<BluetoothServerSocket> {
|
|||||||
private volatile BluetoothAdapter adapter = null;
|
private volatile BluetoothAdapter adapter = null;
|
||||||
|
|
||||||
AndroidBluetoothPlugin(BluetoothConnectionLimiter connectionLimiter,
|
AndroidBluetoothPlugin(BluetoothConnectionLimiter connectionLimiter,
|
||||||
TimeoutMonitor timeoutMonitor, Executor ioExecutor,
|
Executor ioExecutor, AndroidExecutor androidExecutor,
|
||||||
SecureRandom secureRandom, ScheduledExecutorService scheduler,
|
Context appContext, SecureRandom secureRandom, Clock clock,
|
||||||
AndroidExecutor androidExecutor, Context appContext, Clock clock,
|
Backoff backoff, PluginCallback callback, int maxLatency) {
|
||||||
Backoff backoff, PluginCallback callback, int maxLatency,
|
super(connectionLimiter, ioExecutor, secureRandom, backoff, callback,
|
||||||
int maxIdleTime) {
|
maxLatency);
|
||||||
super(connectionLimiter, timeoutMonitor, ioExecutor, secureRandom,
|
|
||||||
backoff, callback, maxLatency, maxIdleTime);
|
|
||||||
this.scheduler = scheduler;
|
|
||||||
this.androidExecutor = androidExecutor;
|
this.androidExecutor = androidExecutor;
|
||||||
this.appContext = appContext;
|
this.appContext = appContext;
|
||||||
this.clock = clock;
|
this.clock = clock;
|
||||||
@@ -184,10 +176,9 @@ class AndroidBluetoothPlugin extends BluetoothPlugin<BluetoothServerSocket> {
|
|||||||
return wrapSocket(ss.accept());
|
return wrapSocket(ss.accept());
|
||||||
}
|
}
|
||||||
|
|
||||||
private DuplexTransportConnection wrapSocket(BluetoothSocket s)
|
private DuplexTransportConnection wrapSocket(BluetoothSocket s) {
|
||||||
throws IOException {
|
return new AndroidBluetoothTransportConnection(this,
|
||||||
return new AndroidBluetoothTransportConnection(this, connectionLimiter,
|
connectionLimiter, s);
|
||||||
timeoutMonitor, appContext, scheduler, s);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@@ -255,15 +246,11 @@ class AndroidBluetoothPlugin extends BluetoothPlugin<BluetoothServerSocket> {
|
|||||||
break;
|
break;
|
||||||
} else if (ACTION_FOUND.equals(action)) {
|
} else if (ACTION_FOUND.equals(action)) {
|
||||||
BluetoothDevice d = i.getParcelableExtra(EXTRA_DEVICE);
|
BluetoothDevice d = i.getParcelableExtra(EXTRA_DEVICE);
|
||||||
// Ignore Bluetooth LE devices
|
String address = d.getAddress();
|
||||||
if (SDK_INT < 18 || d.getType() != DEVICE_TYPE_LE) {
|
if (LOG.isLoggable(INFO))
|
||||||
String address = d.getAddress();
|
LOG.info("Discovered " + scrubMacAddress(address));
|
||||||
if (LOG.isLoggable(INFO))
|
if (!addresses.contains(address))
|
||||||
LOG.info("Discovered " +
|
addresses.add(address);
|
||||||
scrubMacAddress(address));
|
|
||||||
if (!addresses.contains(address))
|
|
||||||
addresses.add(address);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
now = clock.currentTimeMillis();
|
now = clock.currentTimeMillis();
|
||||||
}
|
}
|
||||||
@@ -279,7 +266,7 @@ class AndroidBluetoothPlugin extends BluetoothPlugin<BluetoothServerSocket> {
|
|||||||
appContext.unregisterReceiver(receiver);
|
appContext.unregisterReceiver(receiver);
|
||||||
}
|
}
|
||||||
// Shuffle the addresses so we don't always try the same one first
|
// Shuffle the addresses so we don't always try the same one first
|
||||||
shuffle(addresses);
|
Collections.shuffle(addresses);
|
||||||
return addresses;
|
return addresses;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -3,7 +3,6 @@ package org.briarproject.bramble.plugin.bluetooth;
|
|||||||
import android.content.Context;
|
import android.content.Context;
|
||||||
|
|
||||||
import org.briarproject.bramble.api.event.EventBus;
|
import org.briarproject.bramble.api.event.EventBus;
|
||||||
import org.briarproject.bramble.api.io.TimeoutMonitor;
|
|
||||||
import org.briarproject.bramble.api.nullsafety.NotNullByDefault;
|
import org.briarproject.bramble.api.nullsafety.NotNullByDefault;
|
||||||
import org.briarproject.bramble.api.plugin.Backoff;
|
import org.briarproject.bramble.api.plugin.Backoff;
|
||||||
import org.briarproject.bramble.api.plugin.BackoffFactory;
|
import org.briarproject.bramble.api.plugin.BackoffFactory;
|
||||||
@@ -16,7 +15,6 @@ import org.briarproject.bramble.api.system.Clock;
|
|||||||
|
|
||||||
import java.security.SecureRandom;
|
import java.security.SecureRandom;
|
||||||
import java.util.concurrent.Executor;
|
import java.util.concurrent.Executor;
|
||||||
import java.util.concurrent.ScheduledExecutorService;
|
|
||||||
|
|
||||||
import javax.annotation.concurrent.Immutable;
|
import javax.annotation.concurrent.Immutable;
|
||||||
|
|
||||||
@@ -27,34 +25,28 @@ import static org.briarproject.bramble.api.plugin.BluetoothConstants.ID;
|
|||||||
public class AndroidBluetoothPluginFactory implements DuplexPluginFactory {
|
public class AndroidBluetoothPluginFactory implements DuplexPluginFactory {
|
||||||
|
|
||||||
private static final int MAX_LATENCY = 30 * 1000; // 30 seconds
|
private static final int MAX_LATENCY = 30 * 1000; // 30 seconds
|
||||||
private static final int MAX_IDLE_TIME = 30 * 1000; // 30 seconds
|
|
||||||
private static final int MIN_POLLING_INTERVAL = 60 * 1000; // 1 minute
|
private static final int MIN_POLLING_INTERVAL = 60 * 1000; // 1 minute
|
||||||
private static final int MAX_POLLING_INTERVAL = 10 * 60 * 1000; // 10 mins
|
private static final int MAX_POLLING_INTERVAL = 10 * 60 * 1000; // 10 mins
|
||||||
private static final double BACKOFF_BASE = 1.2;
|
private static final double BACKOFF_BASE = 1.2;
|
||||||
|
|
||||||
private final Executor ioExecutor;
|
private final Executor ioExecutor;
|
||||||
private final ScheduledExecutorService scheduler;
|
|
||||||
private final AndroidExecutor androidExecutor;
|
private final AndroidExecutor androidExecutor;
|
||||||
private final Context appContext;
|
private final Context appContext;
|
||||||
private final SecureRandom secureRandom;
|
private final SecureRandom secureRandom;
|
||||||
private final EventBus eventBus;
|
private final EventBus eventBus;
|
||||||
private final Clock clock;
|
private final Clock clock;
|
||||||
private final TimeoutMonitor timeoutMonitor;
|
|
||||||
private final BackoffFactory backoffFactory;
|
private final BackoffFactory backoffFactory;
|
||||||
|
|
||||||
public AndroidBluetoothPluginFactory(Executor ioExecutor,
|
public AndroidBluetoothPluginFactory(Executor ioExecutor,
|
||||||
ScheduledExecutorService scheduler,
|
|
||||||
AndroidExecutor androidExecutor, Context appContext,
|
AndroidExecutor androidExecutor, Context appContext,
|
||||||
SecureRandom secureRandom, EventBus eventBus, Clock clock,
|
SecureRandom secureRandom, EventBus eventBus, Clock clock,
|
||||||
TimeoutMonitor timeoutMonitor, BackoffFactory backoffFactory) {
|
BackoffFactory backoffFactory) {
|
||||||
this.ioExecutor = ioExecutor;
|
this.ioExecutor = ioExecutor;
|
||||||
this.scheduler = scheduler;
|
|
||||||
this.androidExecutor = androidExecutor;
|
this.androidExecutor = androidExecutor;
|
||||||
this.appContext = appContext;
|
this.appContext = appContext;
|
||||||
this.secureRandom = secureRandom;
|
this.secureRandom = secureRandom;
|
||||||
this.eventBus = eventBus;
|
this.eventBus = eventBus;
|
||||||
this.clock = clock;
|
this.clock = clock;
|
||||||
this.timeoutMonitor = timeoutMonitor;
|
|
||||||
this.backoffFactory = backoffFactory;
|
this.backoffFactory = backoffFactory;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -71,13 +63,12 @@ public class AndroidBluetoothPluginFactory implements DuplexPluginFactory {
|
|||||||
@Override
|
@Override
|
||||||
public DuplexPlugin createPlugin(PluginCallback callback) {
|
public DuplexPlugin createPlugin(PluginCallback callback) {
|
||||||
BluetoothConnectionLimiter connectionLimiter =
|
BluetoothConnectionLimiter connectionLimiter =
|
||||||
new BluetoothConnectionLimiterImpl(eventBus);
|
new BluetoothConnectionLimiterImpl();
|
||||||
Backoff backoff = backoffFactory.createBackoff(MIN_POLLING_INTERVAL,
|
Backoff backoff = backoffFactory.createBackoff(MIN_POLLING_INTERVAL,
|
||||||
MAX_POLLING_INTERVAL, BACKOFF_BASE);
|
MAX_POLLING_INTERVAL, BACKOFF_BASE);
|
||||||
AndroidBluetoothPlugin plugin = new AndroidBluetoothPlugin(
|
AndroidBluetoothPlugin plugin = new AndroidBluetoothPlugin(
|
||||||
connectionLimiter, timeoutMonitor, ioExecutor, secureRandom,
|
connectionLimiter, ioExecutor, androidExecutor, appContext,
|
||||||
scheduler, androidExecutor, appContext, clock, backoff,
|
secureRandom, clock, backoff, callback, MAX_LATENCY);
|
||||||
callback, MAX_LATENCY, MAX_IDLE_TIME);
|
|
||||||
eventBus.addListener(plugin);
|
eventBus.addListener(plugin);
|
||||||
return plugin;
|
return plugin;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,60 +1,33 @@
|
|||||||
package org.briarproject.bramble.plugin.bluetooth;
|
package org.briarproject.bramble.plugin.bluetooth;
|
||||||
|
|
||||||
import android.bluetooth.BluetoothSocket;
|
import android.bluetooth.BluetoothSocket;
|
||||||
import android.content.Context;
|
|
||||||
import android.os.PowerManager;
|
|
||||||
|
|
||||||
import org.briarproject.bramble.api.io.TimeoutMonitor;
|
|
||||||
import org.briarproject.bramble.api.nullsafety.NotNullByDefault;
|
import org.briarproject.bramble.api.nullsafety.NotNullByDefault;
|
||||||
import org.briarproject.bramble.api.plugin.Plugin;
|
import org.briarproject.bramble.api.plugin.Plugin;
|
||||||
import org.briarproject.bramble.api.plugin.duplex.AbstractDuplexTransportConnection;
|
import org.briarproject.bramble.api.plugin.duplex.AbstractDuplexTransportConnection;
|
||||||
import org.briarproject.bramble.util.RenewableWakeLock;
|
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.io.InputStream;
|
import java.io.InputStream;
|
||||||
import java.io.OutputStream;
|
import java.io.OutputStream;
|
||||||
import java.util.concurrent.ScheduledExecutorService;
|
|
||||||
|
|
||||||
import static android.content.Context.POWER_SERVICE;
|
|
||||||
import static android.os.PowerManager.PARTIAL_WAKE_LOCK;
|
|
||||||
import static java.util.concurrent.TimeUnit.MINUTES;
|
|
||||||
import static org.briarproject.bramble.api.nullsafety.NullSafety.requireNonNull;
|
|
||||||
import static org.briarproject.bramble.api.plugin.BluetoothConstants.PROP_ADDRESS;
|
|
||||||
import static org.briarproject.bramble.util.AndroidUtils.getWakeLockTag;
|
|
||||||
import static org.briarproject.bramble.util.AndroidUtils.isValidBluetoothAddress;
|
|
||||||
|
|
||||||
@NotNullByDefault
|
@NotNullByDefault
|
||||||
class AndroidBluetoothTransportConnection
|
class AndroidBluetoothTransportConnection
|
||||||
extends AbstractDuplexTransportConnection {
|
extends AbstractDuplexTransportConnection {
|
||||||
|
|
||||||
private final BluetoothConnectionLimiter connectionLimiter;
|
private final BluetoothConnectionLimiter connectionManager;
|
||||||
private final RenewableWakeLock wakeLock;
|
|
||||||
private final BluetoothSocket socket;
|
private final BluetoothSocket socket;
|
||||||
private final InputStream in;
|
|
||||||
|
|
||||||
AndroidBluetoothTransportConnection(Plugin plugin,
|
AndroidBluetoothTransportConnection(Plugin plugin,
|
||||||
BluetoothConnectionLimiter connectionLimiter,
|
BluetoothConnectionLimiter connectionManager,
|
||||||
TimeoutMonitor timeoutMonitor, Context appContext,
|
BluetoothSocket socket) {
|
||||||
ScheduledExecutorService scheduler, BluetoothSocket socket)
|
|
||||||
throws IOException {
|
|
||||||
super(plugin);
|
super(plugin);
|
||||||
this.connectionLimiter = connectionLimiter;
|
this.connectionManager = connectionManager;
|
||||||
this.socket = socket;
|
this.socket = socket;
|
||||||
in = timeoutMonitor.createTimeoutInputStream(
|
|
||||||
socket.getInputStream(), plugin.getMaxIdleTime() * 2);
|
|
||||||
PowerManager powerManager = (PowerManager)
|
|
||||||
requireNonNull(appContext.getSystemService(POWER_SERVICE));
|
|
||||||
String tag = getWakeLockTag(appContext);
|
|
||||||
wakeLock = new RenewableWakeLock(powerManager, scheduler,
|
|
||||||
PARTIAL_WAKE_LOCK, tag, 1, MINUTES);
|
|
||||||
wakeLock.acquire();
|
|
||||||
String address = socket.getRemoteDevice().getAddress();
|
|
||||||
if (isValidBluetoothAddress(address)) remote.put(PROP_ADDRESS, address);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected InputStream getInputStream() {
|
protected InputStream getInputStream() throws IOException {
|
||||||
return in;
|
return socket.getInputStream();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@@ -67,8 +40,7 @@ class AndroidBluetoothTransportConnection
|
|||||||
try {
|
try {
|
||||||
socket.close();
|
socket.close();
|
||||||
} finally {
|
} finally {
|
||||||
wakeLock.release();
|
connectionManager.connectionClosed(this);
|
||||||
connectionLimiter.connectionClosed(this);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,17 +1,13 @@
|
|||||||
package org.briarproject.bramble.plugin.tcp;
|
package org.briarproject.bramble.plugin.tcp;
|
||||||
|
|
||||||
import android.annotation.TargetApi;
|
|
||||||
import android.content.Context;
|
import android.content.Context;
|
||||||
import android.net.ConnectivityManager;
|
import android.net.ConnectivityManager;
|
||||||
import android.net.LinkAddress;
|
|
||||||
import android.net.LinkProperties;
|
|
||||||
import android.net.Network;
|
import android.net.Network;
|
||||||
import android.net.NetworkCapabilities;
|
import android.net.NetworkInfo;
|
||||||
import android.net.wifi.WifiInfo;
|
import android.net.wifi.WifiInfo;
|
||||||
import android.net.wifi.WifiManager;
|
import android.net.wifi.WifiManager;
|
||||||
|
|
||||||
import org.briarproject.bramble.PoliteExecutor;
|
import org.briarproject.bramble.PoliteExecutor;
|
||||||
import org.briarproject.bramble.api.Pair;
|
|
||||||
import org.briarproject.bramble.api.event.Event;
|
import org.briarproject.bramble.api.event.Event;
|
||||||
import org.briarproject.bramble.api.network.event.NetworkStatusEvent;
|
import org.briarproject.bramble.api.network.event.NetworkStatusEvent;
|
||||||
import org.briarproject.bramble.api.nullsafety.NotNullByDefault;
|
import org.briarproject.bramble.api.nullsafety.NotNullByDefault;
|
||||||
@@ -21,12 +17,9 @@ import org.briarproject.bramble.api.settings.Settings;
|
|||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.net.InetAddress;
|
import java.net.InetAddress;
|
||||||
import java.net.InterfaceAddress;
|
|
||||||
import java.net.NetworkInterface;
|
|
||||||
import java.net.Socket;
|
import java.net.Socket;
|
||||||
import java.net.SocketException;
|
|
||||||
import java.net.UnknownHostException;
|
import java.net.UnknownHostException;
|
||||||
import java.util.List;
|
import java.util.Collection;
|
||||||
import java.util.concurrent.Executor;
|
import java.util.concurrent.Executor;
|
||||||
import java.util.logging.Logger;
|
import java.util.logging.Logger;
|
||||||
|
|
||||||
@@ -35,17 +28,15 @@ import javax.net.SocketFactory;
|
|||||||
|
|
||||||
import static android.content.Context.CONNECTIVITY_SERVICE;
|
import static android.content.Context.CONNECTIVITY_SERVICE;
|
||||||
import static android.content.Context.WIFI_SERVICE;
|
import static android.content.Context.WIFI_SERVICE;
|
||||||
import static android.net.NetworkCapabilities.TRANSPORT_WIFI;
|
import static android.net.ConnectivityManager.TYPE_WIFI;
|
||||||
import static android.os.Build.VERSION.SDK_INT;
|
import static android.os.Build.VERSION.SDK_INT;
|
||||||
import static java.util.Collections.emptyList;
|
import static java.util.Collections.emptyList;
|
||||||
import static java.util.Collections.list;
|
|
||||||
import static java.util.Collections.singletonList;
|
import static java.util.Collections.singletonList;
|
||||||
import static java.util.logging.Level.WARNING;
|
import static java.util.logging.Level.WARNING;
|
||||||
import static java.util.logging.Logger.getLogger;
|
import static java.util.logging.Logger.getLogger;
|
||||||
import static org.briarproject.bramble.api.plugin.Plugin.State.ACTIVE;
|
import static org.briarproject.bramble.api.plugin.Plugin.State.ACTIVE;
|
||||||
import static org.briarproject.bramble.api.plugin.Plugin.State.INACTIVE;
|
import static org.briarproject.bramble.api.plugin.Plugin.State.INACTIVE;
|
||||||
import static org.briarproject.bramble.util.IoUtils.tryToClose;
|
import static org.briarproject.bramble.util.IoUtils.tryToClose;
|
||||||
import static org.briarproject.bramble.util.LogUtils.logException;
|
|
||||||
|
|
||||||
@NotNullByDefault
|
@NotNullByDefault
|
||||||
class AndroidLanTcpPlugin extends LanTcpPlugin {
|
class AndroidLanTcpPlugin extends LanTcpPlugin {
|
||||||
@@ -53,6 +44,19 @@ class AndroidLanTcpPlugin extends LanTcpPlugin {
|
|||||||
private static final Logger LOG =
|
private static final Logger LOG =
|
||||||
getLogger(AndroidLanTcpPlugin.class.getName());
|
getLogger(AndroidLanTcpPlugin.class.getName());
|
||||||
|
|
||||||
|
private static final byte[] WIFI_AP_ADDRESS_BYTES =
|
||||||
|
{(byte) 192, (byte) 168, 43, 1};
|
||||||
|
private static final InetAddress WIFI_AP_ADDRESS;
|
||||||
|
|
||||||
|
static {
|
||||||
|
try {
|
||||||
|
WIFI_AP_ADDRESS = InetAddress.getByAddress(WIFI_AP_ADDRESS_BYTES);
|
||||||
|
} catch (UnknownHostException e) {
|
||||||
|
// Should only be thrown if the address has an illegal length
|
||||||
|
throw new AssertionError(e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
private final Executor connectionStatusExecutor;
|
private final Executor connectionStatusExecutor;
|
||||||
private final ConnectivityManager connectivityManager;
|
private final ConnectivityManager connectivityManager;
|
||||||
@Nullable
|
@Nullable
|
||||||
@@ -62,9 +66,8 @@ class AndroidLanTcpPlugin extends LanTcpPlugin {
|
|||||||
|
|
||||||
AndroidLanTcpPlugin(Executor ioExecutor, Context appContext,
|
AndroidLanTcpPlugin(Executor ioExecutor, Context appContext,
|
||||||
Backoff backoff, PluginCallback callback, int maxLatency,
|
Backoff backoff, PluginCallback callback, int maxLatency,
|
||||||
int maxIdleTime, int connectionTimeout) {
|
int maxIdleTime) {
|
||||||
super(ioExecutor, backoff, callback, maxLatency, maxIdleTime,
|
super(ioExecutor, backoff, callback, maxLatency, maxIdleTime);
|
||||||
connectionTimeout);
|
|
||||||
// Don't execute more than one connection status check at a time
|
// Don't execute more than one connection status check at a time
|
||||||
connectionStatusExecutor =
|
connectionStatusExecutor =
|
||||||
new PoliteExecutor("AndroidLanTcpPlugin", ioExecutor, 1);
|
new PoliteExecutor("AndroidLanTcpPlugin", ioExecutor, 1);
|
||||||
@@ -80,7 +83,6 @@ class AndroidLanTcpPlugin extends LanTcpPlugin {
|
|||||||
@Override
|
@Override
|
||||||
public void start() {
|
public void start() {
|
||||||
if (used.getAndSet(true)) throw new IllegalStateException();
|
if (used.getAndSet(true)) throw new IllegalStateException();
|
||||||
initialisePortProperty();
|
|
||||||
Settings settings = callback.getSettings();
|
Settings settings = callback.getSettings();
|
||||||
state.setStarted(settings.getBoolean(PREF_PLUGIN_ENABLE, false));
|
state.setStarted(settings.getBoolean(PREF_PLUGIN_ENABLE, false));
|
||||||
updateConnectionStatus();
|
updateConnectionStatus();
|
||||||
@@ -92,125 +94,18 @@ class AndroidLanTcpPlugin extends LanTcpPlugin {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected List<InetAddress> getUsableLocalInetAddresses(boolean ipv4) {
|
protected Collection<InetAddress> getLocalIpAddresses() {
|
||||||
InetAddress addr = getWifiAddress(ipv4);
|
// If the device doesn't have wifi, don't open any sockets
|
||||||
return addr == null ? emptyList() : singletonList(addr);
|
if (wifiManager == null) return emptyList();
|
||||||
}
|
// If we're connected to a wifi network, use that network
|
||||||
|
|
||||||
@Nullable
|
|
||||||
private InetAddress getWifiAddress(boolean ipv4) {
|
|
||||||
Pair<InetAddress, Boolean> wifi = getWifiIpv4Address();
|
|
||||||
if (ipv4) return wifi == null ? null : wifi.getFirst();
|
|
||||||
// If there's no wifi IPv4 address, we might be a client on an
|
|
||||||
// IPv6-only wifi network. We can only detect this on API 21+
|
|
||||||
if (wifi == null) {
|
|
||||||
return SDK_INT >= 21 ? getWifiClientIpv6Address() : null;
|
|
||||||
}
|
|
||||||
// Use the wifi IPv4 address to determine which interface's IPv6
|
|
||||||
// address we should return (if the interface has a suitable address)
|
|
||||||
return getIpv6AddressForInterface(wifi.getFirst());
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns a {@link Pair} where the first element is the IPv4 address of
|
|
||||||
* the wifi interface and the second element is true if this device is
|
|
||||||
* providing an access point, or false if this device is a client. Returns
|
|
||||||
* null if this device isn't connected to wifi as an access point or client.
|
|
||||||
*/
|
|
||||||
@Nullable
|
|
||||||
private Pair<InetAddress, Boolean> getWifiIpv4Address() {
|
|
||||||
if (wifiManager == null) return null;
|
|
||||||
// If we're connected to a wifi network, return its address
|
|
||||||
WifiInfo info = wifiManager.getConnectionInfo();
|
WifiInfo info = wifiManager.getConnectionInfo();
|
||||||
if (info != null && info.getIpAddress() != 0) {
|
if (info != null && info.getIpAddress() != 0)
|
||||||
return new Pair<>(intToInetAddress(info.getIpAddress()), false);
|
return singletonList(intToInetAddress(info.getIpAddress()));
|
||||||
}
|
// If we're running an access point, return its address
|
||||||
List<InterfaceAddress> ifAddrs = getLocalInterfaceAddresses();
|
if (super.getLocalIpAddresses().contains(WIFI_AP_ADDRESS))
|
||||||
// If we're providing a normal access point, return its address
|
return singletonList(WIFI_AP_ADDRESS);
|
||||||
for (InterfaceAddress ifAddr : ifAddrs) {
|
// No suitable addresses
|
||||||
if (isAndroidWifiApAddress(ifAddr)) {
|
return emptyList();
|
||||||
return new Pair<>(ifAddr.getAddress(), true);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
// If we're providing a wifi direct access point, return its address
|
|
||||||
for (InterfaceAddress ifAddr : ifAddrs) {
|
|
||||||
if (isAndroidWifiDirectApAddress(ifAddr)) {
|
|
||||||
return new Pair<>(ifAddr.getAddress(), true);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
// Not connected to wifi
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns true if the given address belongs to a network provided by an
|
|
||||||
* Android access point (including the access point's own address).
|
|
||||||
* <p>
|
|
||||||
* The access point's address is usually 192.168.43.1, but at least one
|
|
||||||
* device (Honor 8A) may use other addresses in the range 192.168.43.0/24.
|
|
||||||
*/
|
|
||||||
private boolean isAndroidWifiApAddress(InterfaceAddress ifAddr) {
|
|
||||||
if (ifAddr.getNetworkPrefixLength() != 24) return false;
|
|
||||||
byte[] ip = ifAddr.getAddress().getAddress();
|
|
||||||
return ip.length == 4
|
|
||||||
&& ip[0] == (byte) 192
|
|
||||||
&& ip[1] == (byte) 168
|
|
||||||
&& ip[2] == (byte) 43;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns true if the given address belongs to a network provided by an
|
|
||||||
* Android wifi direct legacy mode access point (including the access
|
|
||||||
* point's own address).
|
|
||||||
*/
|
|
||||||
private boolean isAndroidWifiDirectApAddress(InterfaceAddress ifAddr) {
|
|
||||||
if (ifAddr.getNetworkPrefixLength() != 24) return false;
|
|
||||||
byte[] ip = ifAddr.getAddress().getAddress();
|
|
||||||
return ip.length == 4
|
|
||||||
&& ip[0] == (byte) 192
|
|
||||||
&& ip[1] == (byte) 168
|
|
||||||
&& ip[2] == (byte) 49;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns a link-local IPv6 address for the wifi client interface, or null
|
|
||||||
* if there's no such interface or it doesn't have a suitable address.
|
|
||||||
*/
|
|
||||||
@TargetApi(21)
|
|
||||||
@Nullable
|
|
||||||
private InetAddress getWifiClientIpv6Address() {
|
|
||||||
for (Network net : connectivityManager.getAllNetworks()) {
|
|
||||||
NetworkCapabilities caps =
|
|
||||||
connectivityManager.getNetworkCapabilities(net);
|
|
||||||
if (caps == null || !caps.hasTransport(TRANSPORT_WIFI)) continue;
|
|
||||||
LinkProperties props = connectivityManager.getLinkProperties(net);
|
|
||||||
if (props == null) continue;
|
|
||||||
for (LinkAddress linkAddress : props.getLinkAddresses()) {
|
|
||||||
InetAddress addr = linkAddress.getAddress();
|
|
||||||
if (isIpv6LinkLocalAddress(addr)) return addr;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns a link-local IPv6 address for the interface with the given IPv4
|
|
||||||
* address, or null if the interface doesn't have a suitable address.
|
|
||||||
*/
|
|
||||||
@Nullable
|
|
||||||
private InetAddress getIpv6AddressForInterface(InetAddress ipv4) {
|
|
||||||
try {
|
|
||||||
NetworkInterface iface = NetworkInterface.getByInetAddress(ipv4);
|
|
||||||
if (iface == null) return null;
|
|
||||||
for (InetAddress addr : list(iface.getInetAddresses())) {
|
|
||||||
if (isIpv6LinkLocalAddress(addr)) return addr;
|
|
||||||
}
|
|
||||||
// No suitable address
|
|
||||||
return null;
|
|
||||||
} catch (SocketException e) {
|
|
||||||
logException(LOG, WARNING, e);
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private InetAddress intToInetAddress(int ip) {
|
private InetAddress intToInetAddress(int ip) {
|
||||||
@@ -232,11 +127,9 @@ class AndroidLanTcpPlugin extends LanTcpPlugin {
|
|||||||
private SocketFactory getSocketFactory() {
|
private SocketFactory getSocketFactory() {
|
||||||
if (SDK_INT < 21) return SocketFactory.getDefault();
|
if (SDK_INT < 21) return SocketFactory.getDefault();
|
||||||
for (Network net : connectivityManager.getAllNetworks()) {
|
for (Network net : connectivityManager.getAllNetworks()) {
|
||||||
NetworkCapabilities caps =
|
NetworkInfo info = connectivityManager.getNetworkInfo(net);
|
||||||
connectivityManager.getNetworkCapabilities(net);
|
if (info != null && info.getType() == TYPE_WIFI)
|
||||||
if (caps != null && caps.hasTransport(TRANSPORT_WIFI)) {
|
|
||||||
return net.getSocketFactory();
|
return net.getSocketFactory();
|
||||||
}
|
|
||||||
}
|
}
|
||||||
LOG.warning("Could not find suitable socket factory");
|
LOG.warning("Could not find suitable socket factory");
|
||||||
return SocketFactory.getDefault();
|
return SocketFactory.getDefault();
|
||||||
@@ -252,20 +145,8 @@ class AndroidLanTcpPlugin extends LanTcpPlugin {
|
|||||||
connectionStatusExecutor.execute(() -> {
|
connectionStatusExecutor.execute(() -> {
|
||||||
State s = getState();
|
State s = getState();
|
||||||
if (s != ACTIVE && s != INACTIVE) return;
|
if (s != ACTIVE && s != INACTIVE) return;
|
||||||
Pair<InetAddress, Boolean> wifi = getPreferredWifiAddress();
|
Collection<InetAddress> addrs = getLocalIpAddresses();
|
||||||
if (wifi == null) {
|
if (addrs.contains(WIFI_AP_ADDRESS)) {
|
||||||
LOG.info("Not connected to wifi");
|
|
||||||
socketFactory = SocketFactory.getDefault();
|
|
||||||
// Server sockets may not have been closed automatically when
|
|
||||||
// interface was taken down. If any sockets are open, closing
|
|
||||||
// them here will cause the sockets to be cleared and the state
|
|
||||||
// to be updated in acceptContactConnections()
|
|
||||||
if (s == ACTIVE) {
|
|
||||||
LOG.info("Closing server sockets");
|
|
||||||
tryToClose(state.getServerSocket(true), LOG, WARNING);
|
|
||||||
tryToClose(state.getServerSocket(false), LOG, WARNING);
|
|
||||||
}
|
|
||||||
} else if (wifi.getSecond()) {
|
|
||||||
LOG.info("Providing wifi hotspot");
|
LOG.info("Providing wifi hotspot");
|
||||||
// There's no corresponding Network object and thus no way
|
// There's no corresponding Network object and thus no way
|
||||||
// to get a suitable socket factory, so we won't be able to
|
// to get a suitable socket factory, so we won't be able to
|
||||||
@@ -273,6 +154,16 @@ class AndroidLanTcpPlugin extends LanTcpPlugin {
|
|||||||
// has internet access
|
// has internet access
|
||||||
socketFactory = SocketFactory.getDefault();
|
socketFactory = SocketFactory.getDefault();
|
||||||
if (s == INACTIVE) bind();
|
if (s == INACTIVE) bind();
|
||||||
|
} else if (addrs.isEmpty()) {
|
||||||
|
LOG.info("Not connected to wifi");
|
||||||
|
socketFactory = SocketFactory.getDefault();
|
||||||
|
// Server socket may not have been closed automatically when
|
||||||
|
// interface was taken down. Socket will be cleared and state
|
||||||
|
// updated in acceptContactConnections()
|
||||||
|
if (s == ACTIVE) {
|
||||||
|
LOG.info("Closing server socket");
|
||||||
|
tryToClose(state.getServerSocket(), LOG, WARNING);
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
LOG.info("Connected to wifi");
|
LOG.info("Connected to wifi");
|
||||||
socketFactory = getSocketFactory();
|
socketFactory = getSocketFactory();
|
||||||
@@ -280,23 +171,4 @@ class AndroidLanTcpPlugin extends LanTcpPlugin {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns a {@link Pair} where the first element is an IP address (IPv4 if
|
|
||||||
* available, otherwise IPv6) of the wifi interface and the second element
|
|
||||||
* is true if this device is providing an access point, or false if this
|
|
||||||
* device is a client. Returns null if this device isn't connected to wifi
|
|
||||||
* as an access point or client.
|
|
||||||
*/
|
|
||||||
@Nullable
|
|
||||||
private Pair<InetAddress, Boolean> getPreferredWifiAddress() {
|
|
||||||
Pair<InetAddress, Boolean> wifi = getWifiIpv4Address();
|
|
||||||
// If there's no wifi IPv4 address, we might be a client on an
|
|
||||||
// IPv6-only wifi network. We can only detect this on API 21+
|
|
||||||
if (wifi == null && SDK_INT >= 21) {
|
|
||||||
InetAddress ipv6 = getWifiClientIpv6Address();
|
|
||||||
if (ipv6 != null) return new Pair<>(ipv6, false);
|
|
||||||
}
|
|
||||||
return wifi;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
@@ -21,11 +21,10 @@ import static org.briarproject.bramble.api.plugin.LanTcpConstants.ID;
|
|||||||
@NotNullByDefault
|
@NotNullByDefault
|
||||||
public class AndroidLanTcpPluginFactory implements DuplexPluginFactory {
|
public class AndroidLanTcpPluginFactory implements DuplexPluginFactory {
|
||||||
|
|
||||||
private static final int MAX_LATENCY = 30_000; // 30 seconds
|
private static final int MAX_LATENCY = 30 * 1000; // 30 seconds
|
||||||
private static final int MAX_IDLE_TIME = 30_000; // 30 seconds
|
private static final int MAX_IDLE_TIME = 30 * 1000; // 30 seconds
|
||||||
private static final int CONNECTION_TIMEOUT = 3_000; // 3 seconds
|
private static final int MIN_POLLING_INTERVAL = 60 * 1000; // 1 minute
|
||||||
private static final int MIN_POLLING_INTERVAL = 60_000; // 1 minute
|
private static final int MAX_POLLING_INTERVAL = 10 * 60 * 1000; // 10 mins
|
||||||
private static final int MAX_POLLING_INTERVAL = 600_000; // 10 mins
|
|
||||||
private static final double BACKOFF_BASE = 1.2;
|
private static final double BACKOFF_BASE = 1.2;
|
||||||
|
|
||||||
private final Executor ioExecutor;
|
private final Executor ioExecutor;
|
||||||
@@ -56,8 +55,7 @@ public class AndroidLanTcpPluginFactory implements DuplexPluginFactory {
|
|||||||
Backoff backoff = backoffFactory.createBackoff(MIN_POLLING_INTERVAL,
|
Backoff backoff = backoffFactory.createBackoff(MIN_POLLING_INTERVAL,
|
||||||
MAX_POLLING_INTERVAL, BACKOFF_BASE);
|
MAX_POLLING_INTERVAL, BACKOFF_BASE);
|
||||||
AndroidLanTcpPlugin plugin = new AndroidLanTcpPlugin(ioExecutor,
|
AndroidLanTcpPlugin plugin = new AndroidLanTcpPlugin(ioExecutor,
|
||||||
appContext, backoff, callback, MAX_LATENCY, MAX_IDLE_TIME,
|
appContext, backoff, callback, MAX_LATENCY, MAX_IDLE_TIME);
|
||||||
CONNECTION_TIMEOUT);
|
|
||||||
eventBus.addListener(plugin);
|
eventBus.addListener(plugin);
|
||||||
return plugin;
|
return plugin;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -27,7 +27,6 @@ import static android.content.Context.MODE_PRIVATE;
|
|||||||
import static android.content.Context.POWER_SERVICE;
|
import static android.content.Context.POWER_SERVICE;
|
||||||
import static android.os.PowerManager.PARTIAL_WAKE_LOCK;
|
import static android.os.PowerManager.PARTIAL_WAKE_LOCK;
|
||||||
import static java.util.concurrent.TimeUnit.MINUTES;
|
import static java.util.concurrent.TimeUnit.MINUTES;
|
||||||
import static org.briarproject.bramble.util.AndroidUtils.getWakeLockTag;
|
|
||||||
|
|
||||||
@MethodsNotNullByDefault
|
@MethodsNotNullByDefault
|
||||||
@ParametersNotNullByDefault
|
@ParametersNotNullByDefault
|
||||||
@@ -54,7 +53,7 @@ class AndroidTorPlugin extends TorPlugin {
|
|||||||
appContext.getSystemService(POWER_SERVICE);
|
appContext.getSystemService(POWER_SERVICE);
|
||||||
if (pm == null) throw new AssertionError();
|
if (pm == null) throw new AssertionError();
|
||||||
wakeLock = new RenewableWakeLock(pm, scheduler, PARTIAL_WAKE_LOCK,
|
wakeLock = new RenewableWakeLock(pm, scheduler, PARTIAL_WAKE_LOCK,
|
||||||
getWakeLockTag(appContext), 1, MINUTES);
|
getWakeLockTag(), 1, MINUTES);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@@ -85,4 +84,17 @@ class AndroidTorPlugin extends TorPlugin {
|
|||||||
super.stop();
|
super.stop();
|
||||||
wakeLock.release();
|
wakeLock.release();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private String getWakeLockTag() {
|
||||||
|
PackageManager pm = appContext.getPackageManager();
|
||||||
|
for (PackageInfo info : pm.getInstalledPackages(0)) {
|
||||||
|
String name = info.packageName.toLowerCase();
|
||||||
|
if (name.startsWith("com.huawei.powergenie")) {
|
||||||
|
return "LocationManagerService";
|
||||||
|
} else if (name.startsWith("com.evenwell.powermonitor")) {
|
||||||
|
return "AudioIn";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return getClass().getSimpleName();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,8 +3,6 @@ package org.briarproject.bramble.util;
|
|||||||
import android.annotation.SuppressLint;
|
import android.annotation.SuppressLint;
|
||||||
import android.bluetooth.BluetoothAdapter;
|
import android.bluetooth.BluetoothAdapter;
|
||||||
import android.content.Context;
|
import android.content.Context;
|
||||||
import android.content.pm.PackageInfo;
|
|
||||||
import android.content.pm.PackageManager;
|
|
||||||
import android.os.Build;
|
import android.os.Build;
|
||||||
import android.provider.Settings;
|
import android.provider.Settings;
|
||||||
|
|
||||||
@@ -73,7 +71,7 @@ public class AndroidUtils {
|
|||||||
return new Pair<>("", "");
|
return new Pair<>("", "");
|
||||||
}
|
}
|
||||||
|
|
||||||
public static boolean isValidBluetoothAddress(@Nullable String address) {
|
private static boolean isValidBluetoothAddress(@Nullable String address) {
|
||||||
return !StringUtils.isNullOrEmpty(address)
|
return !StringUtils.isNullOrEmpty(address)
|
||||||
&& BluetoothAdapter.checkBluetoothAddress(address)
|
&& BluetoothAdapter.checkBluetoothAddress(address)
|
||||||
&& !address.equals(FAKE_BLUETOOTH_ADDRESS);
|
&& !address.equals(FAKE_BLUETOOTH_ADDRESS);
|
||||||
@@ -119,17 +117,4 @@ public class AndroidUtils {
|
|||||||
if (SDK_INT < 24) return new String[] {"image/jpeg", "image/png"};
|
if (SDK_INT < 24) return new String[] {"image/jpeg", "image/png"};
|
||||||
else return new String[] {"image/jpeg", "image/png", "image/gif"};
|
else return new String[] {"image/jpeg", "image/png", "image/gif"};
|
||||||
}
|
}
|
||||||
|
|
||||||
public static String getWakeLockTag(Context ctx) {
|
|
||||||
PackageManager pm = ctx.getPackageManager();
|
|
||||||
for (PackageInfo info : pm.getInstalledPackages(0)) {
|
|
||||||
String name = info.packageName.toLowerCase();
|
|
||||||
if (name.startsWith("com.huawei.powergenie")) {
|
|
||||||
return "LocationManagerService";
|
|
||||||
} else if (name.startsWith("com.evenwell.powermonitor")) {
|
|
||||||
return "AudioIn";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return ctx.getPackageName();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -72,9 +72,7 @@ public class AndroidAccountManagerTest extends BrambleMockTestCase {
|
|||||||
@Test
|
@Test
|
||||||
public void testDeleteAccountClearsSharedPrefsAndDeletesFiles()
|
public void testDeleteAccountClearsSharedPrefsAndDeletesFiles()
|
||||||
throws Exception {
|
throws Exception {
|
||||||
// Directories 'code_cache', 'lib' and 'shared_prefs' should be spared
|
// Directories 'lib' and 'shared_prefs' should be spared
|
||||||
File codeCacheDir = new File(testDir, "code_cache");
|
|
||||||
File codeCacheFile = new File(codeCacheDir, "file");
|
|
||||||
File libDir = new File(testDir, "lib");
|
File libDir = new File(testDir, "lib");
|
||||||
File libFile = new File(libDir, "file");
|
File libFile = new File(libDir, "file");
|
||||||
File sharedPrefsDir = new File(testDir, "shared_prefs");
|
File sharedPrefsDir = new File(testDir, "shared_prefs");
|
||||||
@@ -113,8 +111,6 @@ public class AndroidAccountManagerTest extends BrambleMockTestCase {
|
|||||||
|
|
||||||
assertTrue(dbDir.mkdirs());
|
assertTrue(dbDir.mkdirs());
|
||||||
assertTrue(keyDir.mkdirs());
|
assertTrue(keyDir.mkdirs());
|
||||||
assertTrue(codeCacheDir.mkdirs());
|
|
||||||
assertTrue(codeCacheFile.createNewFile());
|
|
||||||
assertTrue(libDir.mkdirs());
|
assertTrue(libDir.mkdirs());
|
||||||
assertTrue(libFile.createNewFile());
|
assertTrue(libFile.createNewFile());
|
||||||
assertTrue(sharedPrefsDir.mkdirs());
|
assertTrue(sharedPrefsDir.mkdirs());
|
||||||
@@ -130,8 +126,6 @@ public class AndroidAccountManagerTest extends BrambleMockTestCase {
|
|||||||
|
|
||||||
assertFalse(dbDir.exists());
|
assertFalse(dbDir.exists());
|
||||||
assertFalse(keyDir.exists());
|
assertFalse(keyDir.exists());
|
||||||
assertTrue(codeCacheDir.exists());
|
|
||||||
assertTrue(codeCacheFile.exists());
|
|
||||||
assertTrue(libDir.exists());
|
assertTrue(libDir.exists());
|
||||||
assertTrue(libFile.exists());
|
assertTrue(libFile.exists());
|
||||||
assertTrue(sharedPrefsDir.exists());
|
assertTrue(sharedPrefsDir.exists());
|
||||||
|
|||||||
@@ -70,7 +70,7 @@ dependencyVerification {
|
|||||||
'org.bouncycastle:bcpkix-jdk15on:1.56:bcpkix-jdk15on-1.56.jar:7043dee4e9e7175e93e0b36f45b1ec1ecb893c5f755667e8b916eb8dd201c6ca',
|
'org.bouncycastle:bcpkix-jdk15on:1.56:bcpkix-jdk15on-1.56.jar:7043dee4e9e7175e93e0b36f45b1ec1ecb893c5f755667e8b916eb8dd201c6ca',
|
||||||
'org.bouncycastle:bcprov-jdk15on:1.56:bcprov-jdk15on-1.56.jar:963e1ee14f808ffb99897d848ddcdb28fa91ddda867eb18d303e82728f878349',
|
'org.bouncycastle:bcprov-jdk15on:1.56:bcprov-jdk15on-1.56.jar:963e1ee14f808ffb99897d848ddcdb28fa91ddda867eb18d303e82728f878349',
|
||||||
'org.briarproject:obfs4proxy-android:0.0.11-2:obfs4proxy-android-0.0.11-2.zip:57e55cbe87aa2aac210fdbb6cd8cdeafe15f825406a08ebf77a8b787aa2c6a8a',
|
'org.briarproject:obfs4proxy-android:0.0.11-2:obfs4proxy-android-0.0.11-2.zip:57e55cbe87aa2aac210fdbb6cd8cdeafe15f825406a08ebf77a8b787aa2c6a8a',
|
||||||
'org.briarproject:tor-android:0.3.5.10:tor-android-0.3.5.10.zip:edd83bf557fcff2105eaa0bdb3f607a6852ebe7360920929ae3039dd5f4774c5',
|
'org.briarproject:tor-android:0.3.5.9:tor-android-0.3.5.9.zip:853b0440feccd6904bd03e6b2de53a62ebcde1d58068beeadc447a7dff950bc8',
|
||||||
'org.checkerframework:checker-compat-qual:2.5.3:checker-compat-qual-2.5.3.jar:d76b9afea61c7c082908023f0cbc1427fab9abd2df915c8b8a3e7a509bccbc6d',
|
'org.checkerframework:checker-compat-qual:2.5.3:checker-compat-qual-2.5.3.jar:d76b9afea61c7c082908023f0cbc1427fab9abd2df915c8b8a3e7a509bccbc6d',
|
||||||
'org.checkerframework:checker-qual:2.5.2:checker-qual-2.5.2.jar:64b02691c8b9d4e7700f8ee2e742dce7ea2c6e81e662b7522c9ee3bf568c040a',
|
'org.checkerframework:checker-qual:2.5.2:checker-qual-2.5.2.jar:64b02691c8b9d4e7700f8ee2e742dce7ea2c6e81e662b7522c9ee3bf568c040a',
|
||||||
'org.codehaus.groovy:groovy-all:2.4.15:groovy-all-2.4.15.jar:51d6c4e71782e85674239189499854359d380fb75e1a703756e3aaa5b98a5af0',
|
'org.codehaus.groovy:groovy-all:2.4.15:groovy-all-2.4.15.jar:51d6c4e71782e85674239189499854359d380fb75e1a703756e3aaa5b98a5af0',
|
||||||
|
|||||||
@@ -1,6 +1,5 @@
|
|||||||
package org.briarproject.bramble.api.account;
|
package org.briarproject.bramble.api.account;
|
||||||
|
|
||||||
import org.briarproject.bramble.api.crypto.DecryptionException;
|
|
||||||
import org.briarproject.bramble.api.crypto.SecretKey;
|
import org.briarproject.bramble.api.crypto.SecretKey;
|
||||||
import org.briarproject.bramble.api.identity.IdentityManager;
|
import org.briarproject.bramble.api.identity.IdentityManager;
|
||||||
import org.briarproject.bramble.api.nullsafety.NotNullByDefault;
|
import org.briarproject.bramble.api.nullsafety.NotNullByDefault;
|
||||||
@@ -14,8 +13,7 @@ public interface AccountManager {
|
|||||||
* Returns true if the manager has the database key. This will be false
|
* Returns true if the manager has the database key. This will be false
|
||||||
* before {@link #createAccount(String, String)} or {@link #signIn(String)}
|
* before {@link #createAccount(String, String)} or {@link #signIn(String)}
|
||||||
* has been called, and true after {@link #createAccount(String, String)}
|
* has been called, and true after {@link #createAccount(String, String)}
|
||||||
* or {@link #signIn(String)} has returned true, until
|
* or {@link #signIn(String)} has returned true, until the process exits.
|
||||||
* {@link #deleteAccount()} is called or the process exits.
|
|
||||||
*/
|
*/
|
||||||
boolean hasDatabaseKey();
|
boolean hasDatabaseKey();
|
||||||
|
|
||||||
@@ -24,22 +22,25 @@ public interface AccountManager {
|
|||||||
* before {@link #createAccount(String, String)} or {@link #signIn(String)}
|
* before {@link #createAccount(String, String)} or {@link #signIn(String)}
|
||||||
* has been called, and non-null after
|
* has been called, and non-null after
|
||||||
* {@link #createAccount(String, String)} or {@link #signIn(String)} has
|
* {@link #createAccount(String, String)} or {@link #signIn(String)} has
|
||||||
* returned true, until {@link #deleteAccount()} is called or the process
|
* returned true, until the process exits.
|
||||||
* exits.
|
|
||||||
*/
|
*/
|
||||||
@Nullable
|
@Nullable
|
||||||
SecretKey getDatabaseKey();
|
SecretKey getDatabaseKey();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns true if the encrypted database key can be loaded from disk.
|
* Returns true if the encrypted database key can be loaded from disk, and
|
||||||
|
* the database directory exists and is a directory.
|
||||||
*/
|
*/
|
||||||
boolean accountExists();
|
boolean accountExists();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates an identity with the given name and registers it with the
|
* Creates an identity with the given name and registers it with the
|
||||||
* {@link IdentityManager}. Creates a database key, encrypts it with the
|
* {@link IdentityManager}. Creates a database key, encrypts it with the
|
||||||
* given password and stores it on disk. {@link #accountExists()} will
|
* given password and stores it on disk.
|
||||||
* return true after this method returns true.
|
* <p/>
|
||||||
|
* This method does not create the database directory, so
|
||||||
|
* {@link #accountExists()} will continue to return false until the
|
||||||
|
* database directory is created.
|
||||||
*/
|
*/
|
||||||
boolean createAccount(String name, String password);
|
boolean createAccount(String name, String password);
|
||||||
|
|
||||||
@@ -53,19 +54,17 @@ public interface AccountManager {
|
|||||||
* Loads the encrypted database key from disk and decrypts it with the
|
* Loads the encrypted database key from disk and decrypts it with the
|
||||||
* given password.
|
* given password.
|
||||||
*
|
*
|
||||||
* @throws DecryptionException If the database key could not be loaded and
|
* @return true if the database key was successfully loaded and decrypted.
|
||||||
* decrypted.
|
|
||||||
*/
|
*/
|
||||||
void signIn(String password) throws DecryptionException;
|
boolean signIn(String password);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Loads the encrypted database key from disk, decrypts it with the old
|
* Loads the encrypted database key from disk, decrypts it with the old
|
||||||
* password, encrypts it with the new password, and stores it on disk,
|
* password, encrypts it with the new password, and stores it on disk,
|
||||||
* replacing the old key.
|
* replacing the old key.
|
||||||
*
|
*
|
||||||
* @throws DecryptionException If the database key could not be loaded and
|
* @return true if the database key was successfully loaded, re-encrypted
|
||||||
* decrypted.
|
* and stored.
|
||||||
*/
|
*/
|
||||||
void changePassword(String oldPassword, String newPassword)
|
boolean changePassword(String oldPassword, String newPassword);
|
||||||
throws DecryptionException;
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,130 +0,0 @@
|
|||||||
package org.briarproject.bramble.api.connection;
|
|
||||||
|
|
||||||
import org.briarproject.bramble.api.contact.ContactId;
|
|
||||||
import org.briarproject.bramble.api.contact.PendingContactId;
|
|
||||||
import org.briarproject.bramble.api.nullsafety.NotNullByDefault;
|
|
||||||
import org.briarproject.bramble.api.plugin.PluginConfig;
|
|
||||||
import org.briarproject.bramble.api.plugin.TransportId;
|
|
||||||
import org.briarproject.bramble.api.plugin.event.ConnectionClosedEvent;
|
|
||||||
import org.briarproject.bramble.api.plugin.event.ConnectionOpenedEvent;
|
|
||||||
import org.briarproject.bramble.api.plugin.event.ContactConnectedEvent;
|
|
||||||
import org.briarproject.bramble.api.plugin.event.ContactDisconnectedEvent;
|
|
||||||
import org.briarproject.bramble.api.rendezvous.event.RendezvousConnectionClosedEvent;
|
|
||||||
import org.briarproject.bramble.api.rendezvous.event.RendezvousConnectionOpenedEvent;
|
|
||||||
import org.briarproject.bramble.api.sync.Priority;
|
|
||||||
|
|
||||||
import java.util.Collection;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Keeps track of which contacts are currently connected by which transports.
|
|
||||||
*/
|
|
||||||
@NotNullByDefault
|
|
||||||
public interface ConnectionRegistry {
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Registers an incoming connection from the given contact over the given
|
|
||||||
* transport. The connection's {@link Priority priority} can be set later
|
|
||||||
* via {@link #setPriority(ContactId, TransportId, InterruptibleConnection,
|
|
||||||
* Priority)} if a priority record is received from the contact.
|
|
||||||
* <p>
|
|
||||||
* Broadcasts {@link ConnectionOpenedEvent}. Also broadcasts
|
|
||||||
* {@link ContactConnectedEvent} if this is the only connection with the
|
|
||||||
* contact.
|
|
||||||
*/
|
|
||||||
void registerIncomingConnection(ContactId c, TransportId t,
|
|
||||||
InterruptibleConnection conn);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Registers an outgoing connection to the given contact over the given
|
|
||||||
* transport.
|
|
||||||
* <p>
|
|
||||||
* Broadcasts {@link ConnectionOpenedEvent}. Also broadcasts
|
|
||||||
* {@link ContactConnectedEvent} if this is the only connection with the
|
|
||||||
* contact.
|
|
||||||
* <p>
|
|
||||||
* If the registry has any "better" connections with the given contact, the
|
|
||||||
* given connection will be interrupted. If the registry has any "worse"
|
|
||||||
* connections with the given contact, those connections will be
|
|
||||||
* interrupted.
|
|
||||||
* <p>
|
|
||||||
* Connection A is considered "better" than connection B if both
|
|
||||||
* connections have had their priorities set, and either A's transport is
|
|
||||||
* {@link PluginConfig#getTransportPreferences() preferred} to B's, or
|
|
||||||
* they use the same transport and A has higher {@link Priority priority}
|
|
||||||
* than B.
|
|
||||||
* <p>
|
|
||||||
* For backward compatibility, connections without priorities are not
|
|
||||||
* considered better or worse than other connections.
|
|
||||||
*/
|
|
||||||
void registerOutgoingConnection(ContactId c, TransportId t,
|
|
||||||
InterruptibleConnection conn, Priority priority);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Unregisters a connection with the given contact over the given transport.
|
|
||||||
* <p>
|
|
||||||
* Broadcasts {@link ConnectionClosedEvent}. Also broadcasts
|
|
||||||
* {@link ContactDisconnectedEvent} if this is the only connection with
|
|
||||||
* the contact.
|
|
||||||
*/
|
|
||||||
void unregisterConnection(ContactId c, TransportId t,
|
|
||||||
InterruptibleConnection conn, boolean incoming, boolean exception);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Sets the {@link Priority priority} of a connection that was previously
|
|
||||||
* registered via {@link #registerIncomingConnection(ContactId, TransportId,
|
|
||||||
* InterruptibleConnection)}.
|
|
||||||
* <p>
|
|
||||||
* If the registry has any "better" connections with the given contact, the
|
|
||||||
* given connection will be interrupted. If the registry has any "worse"
|
|
||||||
* connections with the given contact, those connections will be
|
|
||||||
* interrupted.
|
|
||||||
* <p>
|
|
||||||
* Connection A is considered "better" than connection B if both
|
|
||||||
* connections have had their priorities set, and either A's transport is
|
|
||||||
* {@link PluginConfig#getTransportPreferences() preferred} to B's, or
|
|
||||||
* they use the same transport and A has higher {@link Priority priority}
|
|
||||||
* than B.
|
|
||||||
* <p>
|
|
||||||
* For backward compatibility, connections without priorities are not
|
|
||||||
* considered better or worse than other connections.
|
|
||||||
*/
|
|
||||||
void setPriority(ContactId c, TransportId t, InterruptibleConnection conn,
|
|
||||||
Priority priority);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns any contacts that are connected via the given transport.
|
|
||||||
*/
|
|
||||||
Collection<ContactId> getConnectedContacts(TransportId t);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns any contacts that are connected via the given transport or any
|
|
||||||
* {@link PluginConfig#getTransportPreferences() better} transport.
|
|
||||||
*/
|
|
||||||
Collection<ContactId> getConnectedOrBetterContacts(TransportId t);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns true if the given contact is connected via the given transport.
|
|
||||||
*/
|
|
||||||
boolean isConnected(ContactId c, TransportId t);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns true if the given contact is connected via any transport.
|
|
||||||
*/
|
|
||||||
boolean isConnected(ContactId c);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Registers a connection with the given pending contact. Broadcasts
|
|
||||||
* {@link RendezvousConnectionOpenedEvent} if this is the only connection
|
|
||||||
* with the pending contact.
|
|
||||||
*
|
|
||||||
* @return True if this is the only connection with the pending contact,
|
|
||||||
* false if it is redundant and should be closed
|
|
||||||
*/
|
|
||||||
boolean registerConnection(PendingContactId p);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Unregisters a connection with the given pending contact. Broadcasts
|
|
||||||
* {@link RendezvousConnectionClosedEvent}.
|
|
||||||
*/
|
|
||||||
void unregisterConnection(PendingContactId p, boolean success);
|
|
||||||
}
|
|
||||||
@@ -1,19 +0,0 @@
|
|||||||
package org.briarproject.bramble.api.connection;
|
|
||||||
|
|
||||||
import org.briarproject.bramble.api.nullsafety.NotNullByDefault;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* A duplex sync connection that can be closed by interrupting its outgoing
|
|
||||||
* sync session.
|
|
||||||
*/
|
|
||||||
@NotNullByDefault
|
|
||||||
public interface InterruptibleConnection {
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Interrupts the connection's outgoing sync session. If the underlying
|
|
||||||
* transport connection is alive and the remote peer is cooperative, this
|
|
||||||
* should result in both sync sessions ending and the connection being
|
|
||||||
* cleanly closed.
|
|
||||||
*/
|
|
||||||
void interruptOutgoingSession();
|
|
||||||
}
|
|
||||||
@@ -142,17 +142,16 @@ public interface CryptoComponent {
|
|||||||
/**
|
/**
|
||||||
* Decrypts and authenticates the given ciphertext that has been read from
|
* Decrypts and authenticates the given ciphertext that has been read from
|
||||||
* storage. The encryption and authentication keys are derived from the
|
* storage. The encryption and authentication keys are derived from the
|
||||||
* given password.
|
* given password. Returns null if the ciphertext cannot be decrypted and
|
||||||
|
* authenticated (for example, if the password is wrong).
|
||||||
*
|
*
|
||||||
* @param keyStrengthener Used to strengthen the password-based key. If
|
* @param keyStrengthener Used to strengthen the password-based key. If
|
||||||
* null, or if strengthening was not used when encrypting the ciphertext,
|
* null, or if strengthening was not used when encrypting the ciphertext,
|
||||||
* the password-based key will not be strengthened
|
* the password-based key will not be strengthened
|
||||||
* @throws DecryptionException If the ciphertext cannot be decrypted and
|
|
||||||
* authenticated (for example, if the password is wrong).
|
|
||||||
*/
|
*/
|
||||||
|
@Nullable
|
||||||
byte[] decryptWithPassword(byte[] ciphertext, String password,
|
byte[] decryptWithPassword(byte[] ciphertext, String password,
|
||||||
@Nullable KeyStrengthener keyStrengthener)
|
@Nullable KeyStrengthener keyStrengthener);
|
||||||
throws DecryptionException;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns true if the given ciphertext was encrypted using a strengthened
|
* Returns true if the given ciphertext was encrypted using a strengthened
|
||||||
|
|||||||
@@ -1,17 +0,0 @@
|
|||||||
package org.briarproject.bramble.api.crypto;
|
|
||||||
|
|
||||||
import org.briarproject.bramble.api.nullsafety.NotNullByDefault;
|
|
||||||
|
|
||||||
@NotNullByDefault
|
|
||||||
public class DecryptionException extends Exception {
|
|
||||||
|
|
||||||
private final DecryptionResult result;
|
|
||||||
|
|
||||||
public DecryptionException(DecryptionResult result) {
|
|
||||||
this.result = result;
|
|
||||||
}
|
|
||||||
|
|
||||||
public DecryptionResult getDecryptionResult() {
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,29 +0,0 @@
|
|||||||
package org.briarproject.bramble.api.crypto;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* The result of a password-based decryption operation.
|
|
||||||
*/
|
|
||||||
public enum DecryptionResult {
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Decryption succeeded.
|
|
||||||
*/
|
|
||||||
SUCCESS,
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Decryption failed because the format of the ciphertext was invalid.
|
|
||||||
*/
|
|
||||||
INVALID_CIPHERTEXT,
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Decryption failed because the {@link KeyStrengthener} used for
|
|
||||||
* encryption was not available for decryption.
|
|
||||||
*/
|
|
||||||
KEY_STRENGTHENER_ERROR,
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Decryption failed because the password used for decryption did not match
|
|
||||||
* the password used for encryption.
|
|
||||||
*/
|
|
||||||
INVALID_PASSWORD
|
|
||||||
}
|
|
||||||
@@ -1,15 +0,0 @@
|
|||||||
package org.briarproject.bramble.api.io;
|
|
||||||
|
|
||||||
import java.io.InputStream;
|
|
||||||
|
|
||||||
public interface TimeoutMonitor {
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns an {@link InputStream} that wraps the given stream and allows
|
|
||||||
* read timeouts to be detected.
|
|
||||||
*
|
|
||||||
* @param timeoutMs The read timeout in milliseconds. Timeouts will be
|
|
||||||
* detected eventually but are not guaranteed to be detected immediately.
|
|
||||||
*/
|
|
||||||
InputStream createTimeoutInputStream(InputStream in, long timeoutMs);
|
|
||||||
}
|
|
||||||
@@ -8,4 +8,7 @@ public interface BluetoothConstants {
|
|||||||
|
|
||||||
String PROP_ADDRESS = "address";
|
String PROP_ADDRESS = "address";
|
||||||
String PROP_UUID = "uuid";
|
String PROP_UUID = "uuid";
|
||||||
|
|
||||||
|
// Reason code returned by Plugin#getReasonDisabled()
|
||||||
|
int REASON_NO_BT_ADAPTER = 2;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,11 +1,8 @@
|
|||||||
package org.briarproject.bramble.api.connection;
|
package org.briarproject.bramble.api.plugin;
|
||||||
|
|
||||||
import org.briarproject.bramble.api.contact.ContactId;
|
import org.briarproject.bramble.api.contact.ContactId;
|
||||||
import org.briarproject.bramble.api.contact.PendingContactId;
|
import org.briarproject.bramble.api.contact.PendingContactId;
|
||||||
import org.briarproject.bramble.api.nullsafety.NotNullByDefault;
|
import org.briarproject.bramble.api.nullsafety.NotNullByDefault;
|
||||||
import org.briarproject.bramble.api.plugin.TransportConnectionReader;
|
|
||||||
import org.briarproject.bramble.api.plugin.TransportConnectionWriter;
|
|
||||||
import org.briarproject.bramble.api.plugin.TransportId;
|
|
||||||
import org.briarproject.bramble.api.plugin.duplex.DuplexTransportConnection;
|
import org.briarproject.bramble.api.plugin.duplex.DuplexTransportConnection;
|
||||||
|
|
||||||
@NotNullByDefault
|
@NotNullByDefault
|
||||||
@@ -0,0 +1,67 @@
|
|||||||
|
package org.briarproject.bramble.api.plugin;
|
||||||
|
|
||||||
|
import org.briarproject.bramble.api.contact.ContactId;
|
||||||
|
import org.briarproject.bramble.api.contact.PendingContactId;
|
||||||
|
import org.briarproject.bramble.api.nullsafety.NotNullByDefault;
|
||||||
|
import org.briarproject.bramble.api.plugin.event.ConnectionClosedEvent;
|
||||||
|
import org.briarproject.bramble.api.plugin.event.ConnectionOpenedEvent;
|
||||||
|
import org.briarproject.bramble.api.plugin.event.ContactConnectedEvent;
|
||||||
|
import org.briarproject.bramble.api.plugin.event.ContactDisconnectedEvent;
|
||||||
|
import org.briarproject.bramble.api.rendezvous.event.RendezvousConnectionClosedEvent;
|
||||||
|
import org.briarproject.bramble.api.rendezvous.event.RendezvousConnectionOpenedEvent;
|
||||||
|
|
||||||
|
import java.util.Collection;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Keeps track of which contacts are currently connected by which transports.
|
||||||
|
*/
|
||||||
|
@NotNullByDefault
|
||||||
|
public interface ConnectionRegistry {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Registers a connection with the given contact over the given transport.
|
||||||
|
* Broadcasts {@link ConnectionOpenedEvent}. Also broadcasts
|
||||||
|
* {@link ContactConnectedEvent} if this is the only connection with the
|
||||||
|
* contact.
|
||||||
|
*/
|
||||||
|
void registerConnection(ContactId c, TransportId t, boolean incoming);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Unregisters a connection with the given contact over the given transport.
|
||||||
|
* Broadcasts {@link ConnectionClosedEvent}. Also broadcasts
|
||||||
|
* {@link ContactDisconnectedEvent} if this is the only connection with
|
||||||
|
* the contact.
|
||||||
|
*/
|
||||||
|
void unregisterConnection(ContactId c, TransportId t, boolean incoming);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns any contacts that are connected via the given transport.
|
||||||
|
*/
|
||||||
|
Collection<ContactId> getConnectedContacts(TransportId t);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns true if the given contact is connected via the given transport.
|
||||||
|
*/
|
||||||
|
boolean isConnected(ContactId c, TransportId t);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns true if the given contact is connected via any transport.
|
||||||
|
*/
|
||||||
|
boolean isConnected(ContactId c);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Registers a connection with the given pending contact. Broadcasts
|
||||||
|
* {@link RendezvousConnectionOpenedEvent} if this is the only connection
|
||||||
|
* with the pending contact.
|
||||||
|
*
|
||||||
|
* @return True if this is the only connection with the pending contact,
|
||||||
|
* false if it is redundant and should be closed
|
||||||
|
*/
|
||||||
|
boolean registerConnection(PendingContactId p);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Unregisters a connection with the given pending contact. Broadcasts
|
||||||
|
* {@link RendezvousConnectionClosedEvent}.
|
||||||
|
*/
|
||||||
|
void unregisterConnection(PendingContactId p, boolean success);
|
||||||
|
}
|
||||||
@@ -4,12 +4,10 @@ public interface LanTcpConstants {
|
|||||||
|
|
||||||
TransportId ID = new TransportId("org.briarproject.bramble.lan");
|
TransportId ID = new TransportId("org.briarproject.bramble.lan");
|
||||||
|
|
||||||
// Transport properties (shared with contacts)
|
// a transport property (shared with contacts)
|
||||||
String PROP_IP_PORTS = "ipPorts";
|
String PROP_IP_PORTS = "ipPorts";
|
||||||
String PROP_PORT = "port";
|
|
||||||
String PROP_IPV6 = "ipv6";
|
|
||||||
|
|
||||||
// Local settings (not shared with contacts)
|
// a local setting
|
||||||
String PREF_LAN_IP_PORTS = "ipPorts";
|
String PREF_LAN_IP_PORTS = "ipPorts";
|
||||||
String PREF_IPV6 = "ipv6";
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -13,13 +13,8 @@ public interface Plugin {
|
|||||||
enum State {
|
enum State {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The plugin has not finished starting or has been stopped.
|
* The plugin has not been started, has been stopped, or is disabled by
|
||||||
*/
|
* settings.
|
||||||
STARTING_STOPPING,
|
|
||||||
|
|
||||||
/**
|
|
||||||
* The plugin is disabled by settings. Use {@link #getReasonsDisabled()}
|
|
||||||
* to find out which settings are responsible.
|
|
||||||
*/
|
*/
|
||||||
DISABLED,
|
DISABLED,
|
||||||
|
|
||||||
@@ -47,7 +42,14 @@ public interface Plugin {
|
|||||||
String PREF_PLUGIN_ENABLE = "enable";
|
String PREF_PLUGIN_ENABLE = "enable";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Reason flag returned by {@link #getReasonsDisabled()} to indicate that
|
* Reason code returned by {@link #getReasonDisabled()} to indicate that
|
||||||
|
* the plugin is disabled because it has not been started or has been
|
||||||
|
* stopped.
|
||||||
|
*/
|
||||||
|
int REASON_STARTING_STOPPING = 0;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Reason code returned by {@link #getReasonDisabled()} to indicate that
|
||||||
* the plugin has been disabled by the user.
|
* the plugin has been disabled by the user.
|
||||||
*/
|
*/
|
||||||
int REASON_USER = 1;
|
int REASON_USER = 1;
|
||||||
@@ -83,13 +85,14 @@ public interface Plugin {
|
|||||||
State getState();
|
State getState();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns a set of flags indicating why the plugin is
|
* Returns an integer code indicating why the plugin is
|
||||||
* {@link State#DISABLED disabled}, or 0 if the plugin is not disabled.
|
* {@link State#DISABLED disabled}, or -1 if the plugin is not disabled.
|
||||||
* <p>
|
* <p>
|
||||||
* The flags used are plugin-specific, except the generic flag
|
* The codes used are plugin-specific, except the generic codes
|
||||||
* {@link #REASON_USER}, which may be used by any plugin.
|
* {@link #REASON_STARTING_STOPPING} and {@link #REASON_USER}, which may
|
||||||
|
* be used by any plugin.
|
||||||
*/
|
*/
|
||||||
int getReasonsDisabled();
|
int getReasonDisabled();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns true if the plugin should be polled periodically to attempt to
|
* Returns true if the plugin should be polled periodically to attempt to
|
||||||
|
|||||||
@@ -5,8 +5,6 @@ import org.briarproject.bramble.api.plugin.duplex.DuplexPluginFactory;
|
|||||||
import org.briarproject.bramble.api.plugin.simplex.SimplexPluginFactory;
|
import org.briarproject.bramble.api.plugin.simplex.SimplexPluginFactory;
|
||||||
|
|
||||||
import java.util.Collection;
|
import java.util.Collection;
|
||||||
import java.util.List;
|
|
||||||
import java.util.Map;
|
|
||||||
|
|
||||||
@NotNullByDefault
|
@NotNullByDefault
|
||||||
public interface PluginConfig {
|
public interface PluginConfig {
|
||||||
@@ -16,11 +14,4 @@ public interface PluginConfig {
|
|||||||
Collection<SimplexPluginFactory> getSimplexFactories();
|
Collection<SimplexPluginFactory> getSimplexFactories();
|
||||||
|
|
||||||
boolean shouldPoll();
|
boolean shouldPoll();
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns a map representing transport preferences. For each entry in the
|
|
||||||
* map, connections via the transports identified by the value are
|
|
||||||
* preferred to connections via the transport identified by the key.
|
|
||||||
*/
|
|
||||||
Map<TransportId, List<TransportId>> getTransportPreferences();
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -21,21 +21,10 @@ public interface TorConstants {
|
|||||||
int PREF_TOR_NETWORK_AUTOMATIC = 0;
|
int PREF_TOR_NETWORK_AUTOMATIC = 0;
|
||||||
int PREF_TOR_NETWORK_WITHOUT_BRIDGES = 1;
|
int PREF_TOR_NETWORK_WITHOUT_BRIDGES = 1;
|
||||||
int PREF_TOR_NETWORK_WITH_BRIDGES = 2;
|
int PREF_TOR_NETWORK_WITH_BRIDGES = 2;
|
||||||
// TODO: Remove when settings migration code is removed
|
|
||||||
int PREF_TOR_NETWORK_NEVER = 3;
|
int PREF_TOR_NETWORK_NEVER = 3;
|
||||||
|
|
||||||
/**
|
// Reason codes returned by Plugin#getReasonDisabled()
|
||||||
* Reason flag returned by {@link Plugin#getReasonsDisabled()}.
|
|
||||||
*/
|
|
||||||
int REASON_BATTERY = 2;
|
int REASON_BATTERY = 2;
|
||||||
|
int REASON_MOBILE_DATA = 3;
|
||||||
/**
|
int REASON_COUNTRY_BLOCKED = 4;
|
||||||
* Reason flag returned by {@link Plugin#getReasonsDisabled()}.
|
|
||||||
*/
|
|
||||||
int REASON_MOBILE_DATA = 4;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Reason flag returned by {@link Plugin#getReasonsDisabled()}.
|
|
||||||
*/
|
|
||||||
int REASON_COUNTRY_BLOCKED = 8;
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -4,7 +4,6 @@ import org.briarproject.bramble.api.nullsafety.NotNullByDefault;
|
|||||||
import org.briarproject.bramble.api.plugin.Plugin;
|
import org.briarproject.bramble.api.plugin.Plugin;
|
||||||
import org.briarproject.bramble.api.plugin.TransportConnectionReader;
|
import org.briarproject.bramble.api.plugin.TransportConnectionReader;
|
||||||
import org.briarproject.bramble.api.plugin.TransportConnectionWriter;
|
import org.briarproject.bramble.api.plugin.TransportConnectionWriter;
|
||||||
import org.briarproject.bramble.api.properties.TransportProperties;
|
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.io.InputStream;
|
import java.io.InputStream;
|
||||||
@@ -15,8 +14,6 @@ import java.util.concurrent.atomic.AtomicBoolean;
|
|||||||
public abstract class AbstractDuplexTransportConnection
|
public abstract class AbstractDuplexTransportConnection
|
||||||
implements DuplexTransportConnection {
|
implements DuplexTransportConnection {
|
||||||
|
|
||||||
protected final TransportProperties remote = new TransportProperties();
|
|
||||||
|
|
||||||
private final Plugin plugin;
|
private final Plugin plugin;
|
||||||
private final Reader reader;
|
private final Reader reader;
|
||||||
private final Writer writer;
|
private final Writer writer;
|
||||||
@@ -47,11 +44,6 @@ public abstract class AbstractDuplexTransportConnection
|
|||||||
return writer;
|
return writer;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
public TransportProperties getRemoteProperties() {
|
|
||||||
return remote;
|
|
||||||
}
|
|
||||||
|
|
||||||
private class Reader implements TransportConnectionReader {
|
private class Reader implements TransportConnectionReader {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|||||||
@@ -3,7 +3,6 @@ package org.briarproject.bramble.api.plugin.duplex;
|
|||||||
import org.briarproject.bramble.api.nullsafety.NotNullByDefault;
|
import org.briarproject.bramble.api.nullsafety.NotNullByDefault;
|
||||||
import org.briarproject.bramble.api.plugin.TransportConnectionReader;
|
import org.briarproject.bramble.api.plugin.TransportConnectionReader;
|
||||||
import org.briarproject.bramble.api.plugin.TransportConnectionWriter;
|
import org.briarproject.bramble.api.plugin.TransportConnectionWriter;
|
||||||
import org.briarproject.bramble.api.properties.TransportProperties;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* An interface for reading and writing data over a duplex transport. The
|
* An interface for reading and writing data over a duplex transport. The
|
||||||
@@ -24,10 +23,4 @@ public interface DuplexTransportConnection {
|
|||||||
* for writing to the connection.
|
* for writing to the connection.
|
||||||
*/
|
*/
|
||||||
TransportConnectionWriter getWriter();
|
TransportConnectionWriter getWriter();
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns a possibly empty set of {@link TransportProperties} describing
|
|
||||||
* the remote peer.
|
|
||||||
*/
|
|
||||||
TransportProperties getRemoteProperties();
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -13,14 +13,13 @@ public class ConnectionClosedEvent extends Event {
|
|||||||
|
|
||||||
private final ContactId contactId;
|
private final ContactId contactId;
|
||||||
private final TransportId transportId;
|
private final TransportId transportId;
|
||||||
private final boolean incoming, exception;
|
private final boolean incoming;
|
||||||
|
|
||||||
public ConnectionClosedEvent(ContactId contactId, TransportId transportId,
|
public ConnectionClosedEvent(ContactId contactId, TransportId transportId,
|
||||||
boolean incoming, boolean exception) {
|
boolean incoming) {
|
||||||
this.contactId = contactId;
|
this.contactId = contactId;
|
||||||
this.transportId = transportId;
|
this.transportId = transportId;
|
||||||
this.incoming = incoming;
|
this.incoming = incoming;
|
||||||
this.exception = exception;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public ContactId getContactId() {
|
public ContactId getContactId() {
|
||||||
@@ -34,8 +33,4 @@ public class ConnectionClosedEvent extends Event {
|
|||||||
public boolean isIncoming() {
|
public boolean isIncoming() {
|
||||||
return incoming;
|
return incoming;
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean isException() {
|
|
||||||
return exception;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -11,28 +11,4 @@ public interface TransportPropertyConstants {
|
|||||||
* The maximum length of a property's key or value in UTF-8 bytes.
|
* The maximum length of a property's key or value in UTF-8 bytes.
|
||||||
*/
|
*/
|
||||||
int MAX_PROPERTY_LENGTH = 100;
|
int MAX_PROPERTY_LENGTH = 100;
|
||||||
|
|
||||||
/**
|
|
||||||
* Message metadata key for the transport ID of a local or remote update,
|
|
||||||
* as a BDF string.
|
|
||||||
*/
|
|
||||||
String MSG_KEY_TRANSPORT_ID = "transportId";
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Message metadata key for the version number of a local or remote update,
|
|
||||||
* as a BDF long.
|
|
||||||
*/
|
|
||||||
String MSG_KEY_VERSION = "version";
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Message metadata key for whether an update is local or remote, as a BDF
|
|
||||||
* boolean.
|
|
||||||
*/
|
|
||||||
String MSG_KEY_LOCAL = "local";
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Group metadata key for any discovered transport properties of the
|
|
||||||
* contact, as a BDF dictionary.
|
|
||||||
*/
|
|
||||||
String GROUP_KEY_DISCOVERED = "discovered";
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -34,14 +34,6 @@ public interface TransportPropertyManager {
|
|||||||
void addRemoteProperties(Transaction txn, ContactId c,
|
void addRemoteProperties(Transaction txn, ContactId c,
|
||||||
Map<TransportId, TransportProperties> props) throws DbException;
|
Map<TransportId, TransportProperties> props) throws DbException;
|
||||||
|
|
||||||
/**
|
|
||||||
* Stores the given properties discovered from an incoming transport
|
|
||||||
* connection. They will be overridden by any properties received while
|
|
||||||
* adding the contact or synced from the contact.
|
|
||||||
*/
|
|
||||||
void addRemotePropertiesFromConnection(ContactId c, TransportId t,
|
|
||||||
TransportProperties props) throws DbException;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the local transport properties for all transports.
|
* Returns the local transport properties for all transports.
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -1,23 +0,0 @@
|
|||||||
package org.briarproject.bramble.api.sync;
|
|
||||||
|
|
||||||
import org.briarproject.bramble.api.nullsafety.NotNullByDefault;
|
|
||||||
|
|
||||||
import javax.annotation.concurrent.Immutable;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* A record containing a nonce for choosing between redundant sessions.
|
|
||||||
*/
|
|
||||||
@Immutable
|
|
||||||
@NotNullByDefault
|
|
||||||
public class Priority {
|
|
||||||
|
|
||||||
private final byte[] nonce;
|
|
||||||
|
|
||||||
public Priority(byte[] nonce) {
|
|
||||||
this.nonce = nonce;
|
|
||||||
}
|
|
||||||
|
|
||||||
public byte[] getNonce() {
|
|
||||||
return nonce;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,13 +0,0 @@
|
|||||||
package org.briarproject.bramble.api.sync;
|
|
||||||
|
|
||||||
import org.briarproject.bramble.api.nullsafety.NotNullByDefault;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* An interface for handling a {@link Priority} record received by an
|
|
||||||
* incoming {@link SyncSession}.
|
|
||||||
*/
|
|
||||||
@NotNullByDefault
|
|
||||||
public interface PriorityHandler {
|
|
||||||
|
|
||||||
void handle(Priority p);
|
|
||||||
}
|
|
||||||
@@ -10,5 +10,4 @@ public interface RecordTypes {
|
|||||||
byte OFFER = 2;
|
byte OFFER = 2;
|
||||||
byte REQUEST = 3;
|
byte REQUEST = 3;
|
||||||
byte VERSIONS = 4;
|
byte VERSIONS = 4;
|
||||||
byte PRIORITY = 5;
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -49,10 +49,4 @@ public interface SyncConstants {
|
|||||||
* simultaneously.
|
* simultaneously.
|
||||||
*/
|
*/
|
||||||
int MAX_SUPPORTED_VERSIONS = 10;
|
int MAX_SUPPORTED_VERSIONS = 10;
|
||||||
|
|
||||||
/**
|
|
||||||
* The length of the priority nonce used for choosing between redundant
|
|
||||||
* connections.
|
|
||||||
*/
|
|
||||||
int PRIORITY_NONCE_BYTES = 16;
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -28,8 +28,4 @@ public interface SyncRecordReader {
|
|||||||
boolean hasVersions() throws IOException;
|
boolean hasVersions() throws IOException;
|
||||||
|
|
||||||
Versions readVersions() throws IOException;
|
Versions readVersions() throws IOException;
|
||||||
|
|
||||||
boolean hasPriority() throws IOException;
|
|
||||||
|
|
||||||
Priority readPriority() throws IOException;
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -17,7 +17,5 @@ public interface SyncRecordWriter {
|
|||||||
|
|
||||||
void writeVersions(Versions v) throws IOException;
|
void writeVersions(Versions v) throws IOException;
|
||||||
|
|
||||||
void writePriority(Priority p) throws IOException;
|
|
||||||
|
|
||||||
void flush() throws IOException;
|
void flush() throws IOException;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,23 +2,18 @@ package org.briarproject.bramble.api.sync;
|
|||||||
|
|
||||||
import org.briarproject.bramble.api.contact.ContactId;
|
import org.briarproject.bramble.api.contact.ContactId;
|
||||||
import org.briarproject.bramble.api.nullsafety.NotNullByDefault;
|
import org.briarproject.bramble.api.nullsafety.NotNullByDefault;
|
||||||
import org.briarproject.bramble.api.plugin.TransportId;
|
|
||||||
import org.briarproject.bramble.api.transport.StreamWriter;
|
import org.briarproject.bramble.api.transport.StreamWriter;
|
||||||
|
|
||||||
import java.io.InputStream;
|
import java.io.InputStream;
|
||||||
|
|
||||||
import javax.annotation.Nullable;
|
|
||||||
|
|
||||||
@NotNullByDefault
|
@NotNullByDefault
|
||||||
public interface SyncSessionFactory {
|
public interface SyncSessionFactory {
|
||||||
|
|
||||||
SyncSession createIncomingSession(ContactId c, InputStream in,
|
SyncSession createIncomingSession(ContactId c, InputStream in);
|
||||||
PriorityHandler handler);
|
|
||||||
|
|
||||||
SyncSession createSimplexOutgoingSession(ContactId c, TransportId t,
|
SyncSession createSimplexOutgoingSession(ContactId c, int maxLatency,
|
||||||
int maxLatency, StreamWriter streamWriter);
|
StreamWriter streamWriter);
|
||||||
|
|
||||||
SyncSession createDuplexOutgoingSession(ContactId c, TransportId t,
|
SyncSession createDuplexOutgoingSession(ContactId c, int maxLatency,
|
||||||
int maxLatency, int maxIdleTime, StreamWriter streamWriter,
|
int maxIdleTime, StreamWriter streamWriter);
|
||||||
@Nullable Priority priority);
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,26 +0,0 @@
|
|||||||
package org.briarproject.bramble.api.sync.event;
|
|
||||||
|
|
||||||
import org.briarproject.bramble.api.event.Event;
|
|
||||||
import org.briarproject.bramble.api.nullsafety.NotNullByDefault;
|
|
||||||
import org.briarproject.bramble.api.plugin.TransportId;
|
|
||||||
|
|
||||||
import javax.annotation.concurrent.Immutable;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* An event that is broadcast when all sync connections using a given
|
|
||||||
* transport should be closed.
|
|
||||||
*/
|
|
||||||
@Immutable
|
|
||||||
@NotNullByDefault
|
|
||||||
public class CloseSyncConnectionsEvent extends Event {
|
|
||||||
|
|
||||||
private final TransportId transportId;
|
|
||||||
|
|
||||||
public CloseSyncConnectionsEvent(TransportId transportId) {
|
|
||||||
this.transportId = transportId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public TransportId getTransportId() {
|
|
||||||
return transportId;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -117,10 +117,4 @@ public class IoUtils {
|
|||||||
throw new IOException(e);
|
throw new IOException(e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static boolean isNonEmptyDirectory(File f) {
|
|
||||||
if (!f.isDirectory()) return false;
|
|
||||||
File[] children = f.listFiles();
|
|
||||||
return children != null && children.length > 0;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,17 +2,13 @@ package org.briarproject.bramble.util;
|
|||||||
|
|
||||||
import org.briarproject.bramble.api.nullsafety.NotNullByDefault;
|
import org.briarproject.bramble.api.nullsafety.NotNullByDefault;
|
||||||
|
|
||||||
import java.net.Inet4Address;
|
import java.net.Inet6Address;
|
||||||
import java.net.InetAddress;
|
import java.net.InetAddress;
|
||||||
import java.net.InetSocketAddress;
|
import java.net.InetSocketAddress;
|
||||||
import java.net.SocketAddress;
|
import java.net.SocketAddress;
|
||||||
|
|
||||||
import javax.annotation.Nullable;
|
import javax.annotation.Nullable;
|
||||||
|
|
||||||
import static org.briarproject.bramble.util.StringUtils.isNullOrEmpty;
|
|
||||||
import static org.briarproject.bramble.util.StringUtils.isValidMac;
|
|
||||||
import static org.briarproject.bramble.util.StringUtils.toHexString;
|
|
||||||
|
|
||||||
@NotNullByDefault
|
@NotNullByDefault
|
||||||
public class PrivacyUtils {
|
public class PrivacyUtils {
|
||||||
|
|
||||||
@@ -23,7 +19,7 @@ public class PrivacyUtils {
|
|||||||
|
|
||||||
@Nullable
|
@Nullable
|
||||||
public static String scrubMacAddress(@Nullable String address) {
|
public static String scrubMacAddress(@Nullable String address) {
|
||||||
if (isNullOrEmpty(address) || !isValidMac(address)) return address;
|
if (address == null || address.length() == 0) return null;
|
||||||
// this is a fake address we need to know about
|
// this is a fake address we need to know about
|
||||||
if (address.equals("02:00:00:00:00:00")) return address;
|
if (address.equals("02:00:00:00:00:00")) return address;
|
||||||
// keep first and last octet of MAC address
|
// keep first and last octet of MAC address
|
||||||
@@ -31,37 +27,39 @@ public class PrivacyUtils {
|
|||||||
+ address.substring(14, 17);
|
+ address.substring(14, 17);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Nullable
|
||||||
public static String scrubInetAddress(InetAddress address) {
|
public static String scrubInetAddress(InetAddress address) {
|
||||||
if (address instanceof Inet4Address) {
|
// don't scrub link and site local addresses
|
||||||
// Don't scrub local IPv4 addresses
|
if (address.isLinkLocalAddress() || address.isSiteLocalAddress())
|
||||||
if (address.isLoopbackAddress() || address.isLinkLocalAddress() ||
|
return address.toString();
|
||||||
address.isSiteLocalAddress()) {
|
// completely scrub IPv6 addresses
|
||||||
return address.getHostAddress();
|
if (address instanceof Inet6Address) return "[scrubbed]";
|
||||||
}
|
// keep first and last octet of IPv4 addresses
|
||||||
// Keep first and last octet of non-local IPv4 addresses
|
return scrubInetAddress(address.toString());
|
||||||
return scrubIpv4Address(address.getAddress());
|
|
||||||
} else {
|
|
||||||
// Keep first and last octet of IPv6 addresses
|
|
||||||
return scrubIpv6Address(address.getAddress());
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private static String scrubIpv4Address(byte[] ipv4) {
|
@Nullable
|
||||||
return (ipv4[0] & 0xFF) + ".[scrubbed]." + (ipv4[3] & 0xFF);
|
public static String scrubInetAddress(@Nullable String address) {
|
||||||
}
|
if (address == null) return null;
|
||||||
|
|
||||||
private static String scrubIpv6Address(byte[] ipv6) {
|
int firstDot = address.indexOf(".");
|
||||||
String hex = toHexString(ipv6).toLowerCase();
|
if (firstDot == -1) return "[scrubbed]";
|
||||||
return hex.substring(0, 2) + "[scrubbed]" + hex.substring(30);
|
String prefix = address.substring(0, firstDot + 1);
|
||||||
|
int lastDot = address.lastIndexOf(".");
|
||||||
|
String suffix = address.substring(lastDot, address.length());
|
||||||
|
return prefix + "[scrubbed]" + suffix;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Nullable
|
||||||
public static String scrubSocketAddress(InetSocketAddress address) {
|
public static String scrubSocketAddress(InetSocketAddress address) {
|
||||||
return scrubInetAddress(address.getAddress());
|
InetAddress inetAddress = address.getAddress();
|
||||||
|
return scrubInetAddress(inetAddress);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Nullable
|
||||||
public static String scrubSocketAddress(SocketAddress address) {
|
public static String scrubSocketAddress(SocketAddress address) {
|
||||||
if (address instanceof InetSocketAddress)
|
if (address instanceof InetSocketAddress)
|
||||||
return scrubSocketAddress((InetSocketAddress) address);
|
return scrubSocketAddress((InetSocketAddress) address);
|
||||||
return "[scrubbed]";
|
return scrubInetAddress(address.toString());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
package org.briarproject.bramble;
|
package org.briarproject.bramble;
|
||||||
|
|
||||||
import org.briarproject.bramble.client.ClientModule;
|
import org.briarproject.bramble.client.ClientModule;
|
||||||
import org.briarproject.bramble.connection.ConnectionModule;
|
|
||||||
import org.briarproject.bramble.contact.ContactModule;
|
import org.briarproject.bramble.contact.ContactModule;
|
||||||
import org.briarproject.bramble.crypto.CryptoExecutorModule;
|
import org.briarproject.bramble.crypto.CryptoExecutorModule;
|
||||||
import org.briarproject.bramble.crypto.CryptoModule;
|
import org.briarproject.bramble.crypto.CryptoModule;
|
||||||
@@ -10,7 +9,6 @@ import org.briarproject.bramble.db.DatabaseExecutorModule;
|
|||||||
import org.briarproject.bramble.db.DatabaseModule;
|
import org.briarproject.bramble.db.DatabaseModule;
|
||||||
import org.briarproject.bramble.event.EventModule;
|
import org.briarproject.bramble.event.EventModule;
|
||||||
import org.briarproject.bramble.identity.IdentityModule;
|
import org.briarproject.bramble.identity.IdentityModule;
|
||||||
import org.briarproject.bramble.io.IoModule;
|
|
||||||
import org.briarproject.bramble.keyagreement.KeyAgreementModule;
|
import org.briarproject.bramble.keyagreement.KeyAgreementModule;
|
||||||
import org.briarproject.bramble.lifecycle.LifecycleModule;
|
import org.briarproject.bramble.lifecycle.LifecycleModule;
|
||||||
import org.briarproject.bramble.plugin.PluginModule;
|
import org.briarproject.bramble.plugin.PluginModule;
|
||||||
@@ -29,7 +27,6 @@ import dagger.Module;
|
|||||||
|
|
||||||
@Module(includes = {
|
@Module(includes = {
|
||||||
ClientModule.class,
|
ClientModule.class,
|
||||||
ConnectionModule.class,
|
|
||||||
ContactModule.class,
|
ContactModule.class,
|
||||||
CryptoModule.class,
|
CryptoModule.class,
|
||||||
CryptoExecutorModule.class,
|
CryptoExecutorModule.class,
|
||||||
@@ -38,7 +35,6 @@ import dagger.Module;
|
|||||||
DatabaseExecutorModule.class,
|
DatabaseExecutorModule.class,
|
||||||
EventModule.class,
|
EventModule.class,
|
||||||
IdentityModule.class,
|
IdentityModule.class,
|
||||||
IoModule.class,
|
|
||||||
KeyAgreementModule.class,
|
KeyAgreementModule.class,
|
||||||
LifecycleModule.class,
|
LifecycleModule.class,
|
||||||
PluginModule.class,
|
PluginModule.class,
|
||||||
|
|||||||
@@ -2,7 +2,6 @@ package org.briarproject.bramble.account;
|
|||||||
|
|
||||||
import org.briarproject.bramble.api.account.AccountManager;
|
import org.briarproject.bramble.api.account.AccountManager;
|
||||||
import org.briarproject.bramble.api.crypto.CryptoComponent;
|
import org.briarproject.bramble.api.crypto.CryptoComponent;
|
||||||
import org.briarproject.bramble.api.crypto.DecryptionException;
|
|
||||||
import org.briarproject.bramble.api.crypto.KeyStrengthener;
|
import org.briarproject.bramble.api.crypto.KeyStrengthener;
|
||||||
import org.briarproject.bramble.api.crypto.SecretKey;
|
import org.briarproject.bramble.api.crypto.SecretKey;
|
||||||
import org.briarproject.bramble.api.db.DatabaseConfig;
|
import org.briarproject.bramble.api.db.DatabaseConfig;
|
||||||
@@ -18,7 +17,6 @@ import java.io.FileInputStream;
|
|||||||
import java.io.FileOutputStream;
|
import java.io.FileOutputStream;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.io.InputStreamReader;
|
import java.io.InputStreamReader;
|
||||||
import java.nio.charset.Charset;
|
|
||||||
import java.util.logging.Logger;
|
import java.util.logging.Logger;
|
||||||
|
|
||||||
import javax.annotation.Nullable;
|
import javax.annotation.Nullable;
|
||||||
@@ -26,7 +24,6 @@ import javax.annotation.concurrent.GuardedBy;
|
|||||||
import javax.inject.Inject;
|
import javax.inject.Inject;
|
||||||
|
|
||||||
import static java.util.logging.Level.WARNING;
|
import static java.util.logging.Level.WARNING;
|
||||||
import static org.briarproject.bramble.api.crypto.DecryptionResult.INVALID_CIPHERTEXT;
|
|
||||||
import static org.briarproject.bramble.util.LogUtils.logException;
|
import static org.briarproject.bramble.util.LogUtils.logException;
|
||||||
import static org.briarproject.bramble.util.StringUtils.fromHexString;
|
import static org.briarproject.bramble.util.StringUtils.fromHexString;
|
||||||
import static org.briarproject.bramble.util.StringUtils.toHexString;
|
import static org.briarproject.bramble.util.StringUtils.toHexString;
|
||||||
@@ -98,7 +95,7 @@ class AccountManagerImpl implements AccountManager {
|
|||||||
}
|
}
|
||||||
try {
|
try {
|
||||||
BufferedReader reader = new BufferedReader(new InputStreamReader(
|
BufferedReader reader = new BufferedReader(new InputStreamReader(
|
||||||
new FileInputStream(f), Charset.forName("UTF-8")));
|
new FileInputStream(f), "UTF-8"));
|
||||||
String key = reader.readLine();
|
String key = reader.readLine();
|
||||||
reader.close();
|
reader.close();
|
||||||
return key;
|
return key;
|
||||||
@@ -150,7 +147,7 @@ class AccountManagerImpl implements AccountManager {
|
|||||||
@GuardedBy("stateChangeLock")
|
@GuardedBy("stateChangeLock")
|
||||||
private void writeDbKeyToFile(String key, File f) throws IOException {
|
private void writeDbKeyToFile(String key, File f) throws IOException {
|
||||||
FileOutputStream out = new FileOutputStream(f);
|
FileOutputStream out = new FileOutputStream(f);
|
||||||
out.write(key.getBytes(Charset.forName("UTF-8")));
|
out.write(key.getBytes("UTF-8"));
|
||||||
out.flush();
|
out.flush();
|
||||||
out.close();
|
out.close();
|
||||||
}
|
}
|
||||||
@@ -158,7 +155,8 @@ class AccountManagerImpl implements AccountManager {
|
|||||||
@Override
|
@Override
|
||||||
public boolean accountExists() {
|
public boolean accountExists() {
|
||||||
synchronized (stateChangeLock) {
|
synchronized (stateChangeLock) {
|
||||||
return loadEncryptedDatabaseKey() != null;
|
return loadEncryptedDatabaseKey() != null
|
||||||
|
&& databaseConfig.getDatabaseDirectory().isDirectory();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -195,24 +193,31 @@ class AccountManagerImpl implements AccountManager {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void signIn(String password) throws DecryptionException {
|
public boolean signIn(String password) {
|
||||||
synchronized (stateChangeLock) {
|
synchronized (stateChangeLock) {
|
||||||
databaseKey = loadAndDecryptDatabaseKey(password);
|
SecretKey key = loadAndDecryptDatabaseKey(password);
|
||||||
|
if (key == null) return false;
|
||||||
|
databaseKey = key;
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@GuardedBy("stateChangeLock")
|
@GuardedBy("stateChangeLock")
|
||||||
private SecretKey loadAndDecryptDatabaseKey(String password)
|
@Nullable
|
||||||
throws DecryptionException {
|
private SecretKey loadAndDecryptDatabaseKey(String password) {
|
||||||
String hex = loadEncryptedDatabaseKey();
|
String hex = loadEncryptedDatabaseKey();
|
||||||
if (hex == null) {
|
if (hex == null) {
|
||||||
LOG.warning("Failed to load encrypted database key");
|
LOG.warning("Failed to load encrypted database key");
|
||||||
throw new DecryptionException(INVALID_CIPHERTEXT);
|
return null;
|
||||||
}
|
}
|
||||||
byte[] ciphertext = fromHexString(hex);
|
byte[] ciphertext = fromHexString(hex);
|
||||||
KeyStrengthener keyStrengthener = databaseConfig.getKeyStrengthener();
|
KeyStrengthener keyStrengthener = databaseConfig.getKeyStrengthener();
|
||||||
byte[] plaintext = crypto.decryptWithPassword(ciphertext, password,
|
byte[] plaintext = crypto.decryptWithPassword(ciphertext, password,
|
||||||
keyStrengthener);
|
keyStrengthener);
|
||||||
|
if (plaintext == null) {
|
||||||
|
LOG.info("Failed to decrypt database key");
|
||||||
|
return null;
|
||||||
|
}
|
||||||
SecretKey key = new SecretKey(plaintext);
|
SecretKey key = new SecretKey(plaintext);
|
||||||
// If the DB key was encrypted with a weak key and a key strengthener
|
// If the DB key was encrypted with a weak key and a key strengthener
|
||||||
// is now available, re-encrypt the DB key with a strengthened key
|
// is now available, re-encrypt the DB key with a strengthened key
|
||||||
@@ -225,11 +230,10 @@ class AccountManagerImpl implements AccountManager {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void changePassword(String oldPassword, String newPassword)
|
public boolean changePassword(String oldPassword, String newPassword) {
|
||||||
throws DecryptionException {
|
|
||||||
synchronized (stateChangeLock) {
|
synchronized (stateChangeLock) {
|
||||||
SecretKey key = loadAndDecryptDatabaseKey(oldPassword);
|
SecretKey key = loadAndDecryptDatabaseKey(oldPassword);
|
||||||
encryptAndStoreDatabaseKey(key, newPassword);
|
return key != null && encryptAndStoreDatabaseKey(key, newPassword);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,79 +0,0 @@
|
|||||||
package org.briarproject.bramble.connection;
|
|
||||||
|
|
||||||
import org.briarproject.bramble.api.connection.ConnectionRegistry;
|
|
||||||
import org.briarproject.bramble.api.db.DbException;
|
|
||||||
import org.briarproject.bramble.api.nullsafety.NotNullByDefault;
|
|
||||||
import org.briarproject.bramble.api.plugin.TransportConnectionReader;
|
|
||||||
import org.briarproject.bramble.api.plugin.TransportConnectionWriter;
|
|
||||||
import org.briarproject.bramble.api.plugin.TransportId;
|
|
||||||
import org.briarproject.bramble.api.transport.KeyManager;
|
|
||||||
import org.briarproject.bramble.api.transport.StreamContext;
|
|
||||||
import org.briarproject.bramble.api.transport.StreamReaderFactory;
|
|
||||||
import org.briarproject.bramble.api.transport.StreamWriterFactory;
|
|
||||||
|
|
||||||
import java.io.IOException;
|
|
||||||
import java.io.InputStream;
|
|
||||||
import java.util.logging.Logger;
|
|
||||||
|
|
||||||
import javax.annotation.Nullable;
|
|
||||||
|
|
||||||
import static java.util.logging.Level.WARNING;
|
|
||||||
import static java.util.logging.Logger.getLogger;
|
|
||||||
import static org.briarproject.bramble.api.transport.TransportConstants.TAG_LENGTH;
|
|
||||||
import static org.briarproject.bramble.util.IoUtils.read;
|
|
||||||
import static org.briarproject.bramble.util.LogUtils.logException;
|
|
||||||
|
|
||||||
@NotNullByDefault
|
|
||||||
abstract class Connection {
|
|
||||||
|
|
||||||
protected static final Logger LOG = getLogger(Connection.class.getName());
|
|
||||||
|
|
||||||
final KeyManager keyManager;
|
|
||||||
final ConnectionRegistry connectionRegistry;
|
|
||||||
final StreamReaderFactory streamReaderFactory;
|
|
||||||
final StreamWriterFactory streamWriterFactory;
|
|
||||||
|
|
||||||
Connection(KeyManager keyManager, ConnectionRegistry connectionRegistry,
|
|
||||||
StreamReaderFactory streamReaderFactory,
|
|
||||||
StreamWriterFactory streamWriterFactory) {
|
|
||||||
this.keyManager = keyManager;
|
|
||||||
this.connectionRegistry = connectionRegistry;
|
|
||||||
this.streamReaderFactory = streamReaderFactory;
|
|
||||||
this.streamWriterFactory = streamWriterFactory;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Nullable
|
|
||||||
StreamContext recogniseTag(TransportConnectionReader reader,
|
|
||||||
TransportId transportId) {
|
|
||||||
StreamContext ctx;
|
|
||||||
try {
|
|
||||||
byte[] tag = readTag(reader.getInputStream());
|
|
||||||
return keyManager.getStreamContext(transportId, tag);
|
|
||||||
} catch (IOException | DbException e) {
|
|
||||||
logException(LOG, WARNING, e);
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private byte[] readTag(InputStream in) throws IOException {
|
|
||||||
byte[] tag = new byte[TAG_LENGTH];
|
|
||||||
read(in, tag);
|
|
||||||
return tag;
|
|
||||||
}
|
|
||||||
|
|
||||||
void disposeOnError(TransportConnectionReader reader, boolean recognised) {
|
|
||||||
try {
|
|
||||||
reader.dispose(true, recognised);
|
|
||||||
} catch (IOException e) {
|
|
||||||
logException(LOG, WARNING, e);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
void disposeOnError(TransportConnectionWriter writer) {
|
|
||||||
try {
|
|
||||||
writer.dispose(true);
|
|
||||||
} catch (IOException e) {
|
|
||||||
logException(LOG, WARNING, e);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,114 +0,0 @@
|
|||||||
package org.briarproject.bramble.connection;
|
|
||||||
|
|
||||||
import org.briarproject.bramble.api.connection.ConnectionManager;
|
|
||||||
import org.briarproject.bramble.api.connection.ConnectionRegistry;
|
|
||||||
import org.briarproject.bramble.api.contact.ContactExchangeManager;
|
|
||||||
import org.briarproject.bramble.api.contact.ContactId;
|
|
||||||
import org.briarproject.bramble.api.contact.HandshakeManager;
|
|
||||||
import org.briarproject.bramble.api.contact.PendingContactId;
|
|
||||||
import org.briarproject.bramble.api.lifecycle.IoExecutor;
|
|
||||||
import org.briarproject.bramble.api.nullsafety.NotNullByDefault;
|
|
||||||
import org.briarproject.bramble.api.plugin.TransportConnectionReader;
|
|
||||||
import org.briarproject.bramble.api.plugin.TransportConnectionWriter;
|
|
||||||
import org.briarproject.bramble.api.plugin.TransportId;
|
|
||||||
import org.briarproject.bramble.api.plugin.duplex.DuplexTransportConnection;
|
|
||||||
import org.briarproject.bramble.api.properties.TransportPropertyManager;
|
|
||||||
import org.briarproject.bramble.api.sync.SyncSessionFactory;
|
|
||||||
import org.briarproject.bramble.api.transport.KeyManager;
|
|
||||||
import org.briarproject.bramble.api.transport.StreamReaderFactory;
|
|
||||||
import org.briarproject.bramble.api.transport.StreamWriterFactory;
|
|
||||||
|
|
||||||
import java.security.SecureRandom;
|
|
||||||
import java.util.concurrent.Executor;
|
|
||||||
|
|
||||||
import javax.annotation.concurrent.Immutable;
|
|
||||||
import javax.inject.Inject;
|
|
||||||
|
|
||||||
@Immutable
|
|
||||||
@NotNullByDefault
|
|
||||||
class ConnectionManagerImpl implements ConnectionManager {
|
|
||||||
|
|
||||||
private final Executor ioExecutor;
|
|
||||||
private final KeyManager keyManager;
|
|
||||||
private final StreamReaderFactory streamReaderFactory;
|
|
||||||
private final StreamWriterFactory streamWriterFactory;
|
|
||||||
private final SyncSessionFactory syncSessionFactory;
|
|
||||||
private final HandshakeManager handshakeManager;
|
|
||||||
private final ContactExchangeManager contactExchangeManager;
|
|
||||||
private final ConnectionRegistry connectionRegistry;
|
|
||||||
private final TransportPropertyManager transportPropertyManager;
|
|
||||||
private final SecureRandom secureRandom;
|
|
||||||
|
|
||||||
@Inject
|
|
||||||
ConnectionManagerImpl(@IoExecutor Executor ioExecutor,
|
|
||||||
KeyManager keyManager, StreamReaderFactory streamReaderFactory,
|
|
||||||
StreamWriterFactory streamWriterFactory,
|
|
||||||
SyncSessionFactory syncSessionFactory,
|
|
||||||
HandshakeManager handshakeManager,
|
|
||||||
ContactExchangeManager contactExchangeManager,
|
|
||||||
ConnectionRegistry connectionRegistry,
|
|
||||||
TransportPropertyManager transportPropertyManager,
|
|
||||||
SecureRandom secureRandom) {
|
|
||||||
this.ioExecutor = ioExecutor;
|
|
||||||
this.keyManager = keyManager;
|
|
||||||
this.streamReaderFactory = streamReaderFactory;
|
|
||||||
this.streamWriterFactory = streamWriterFactory;
|
|
||||||
this.syncSessionFactory = syncSessionFactory;
|
|
||||||
this.handshakeManager = handshakeManager;
|
|
||||||
this.contactExchangeManager = contactExchangeManager;
|
|
||||||
this.connectionRegistry = connectionRegistry;
|
|
||||||
this.transportPropertyManager = transportPropertyManager;
|
|
||||||
this.secureRandom = secureRandom;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void manageIncomingConnection(TransportId t,
|
|
||||||
TransportConnectionReader r) {
|
|
||||||
ioExecutor.execute(new IncomingSimplexSyncConnection(keyManager,
|
|
||||||
connectionRegistry, streamReaderFactory, streamWriterFactory,
|
|
||||||
syncSessionFactory, transportPropertyManager, t, r));
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void manageIncomingConnection(TransportId t,
|
|
||||||
DuplexTransportConnection d) {
|
|
||||||
ioExecutor.execute(new IncomingDuplexSyncConnection(keyManager,
|
|
||||||
connectionRegistry, streamReaderFactory, streamWriterFactory,
|
|
||||||
syncSessionFactory, transportPropertyManager, ioExecutor,
|
|
||||||
t, d));
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void manageIncomingConnection(PendingContactId p, TransportId t,
|
|
||||||
DuplexTransportConnection d) {
|
|
||||||
ioExecutor.execute(new IncomingHandshakeConnection(keyManager,
|
|
||||||
connectionRegistry, streamReaderFactory, streamWriterFactory,
|
|
||||||
handshakeManager, contactExchangeManager, this, p, t, d));
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void manageOutgoingConnection(ContactId c, TransportId t,
|
|
||||||
TransportConnectionWriter w) {
|
|
||||||
ioExecutor.execute(new OutgoingSimplexSyncConnection(keyManager,
|
|
||||||
connectionRegistry, streamReaderFactory, streamWriterFactory,
|
|
||||||
syncSessionFactory, transportPropertyManager, c, t, w));
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void manageOutgoingConnection(ContactId c, TransportId t,
|
|
||||||
DuplexTransportConnection d) {
|
|
||||||
ioExecutor.execute(new OutgoingDuplexSyncConnection(keyManager,
|
|
||||||
connectionRegistry, streamReaderFactory, streamWriterFactory,
|
|
||||||
syncSessionFactory, transportPropertyManager, ioExecutor,
|
|
||||||
secureRandom, c, t, d));
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void manageOutgoingConnection(PendingContactId p, TransportId t,
|
|
||||||
DuplexTransportConnection d) {
|
|
||||||
ioExecutor.execute(new OutgoingHandshakeConnection(keyManager,
|
|
||||||
connectionRegistry, streamReaderFactory, streamWriterFactory,
|
|
||||||
handshakeManager, contactExchangeManager, this, p, t, d));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,26 +0,0 @@
|
|||||||
package org.briarproject.bramble.connection;
|
|
||||||
|
|
||||||
import org.briarproject.bramble.api.connection.ConnectionManager;
|
|
||||||
import org.briarproject.bramble.api.connection.ConnectionRegistry;
|
|
||||||
|
|
||||||
import javax.inject.Singleton;
|
|
||||||
|
|
||||||
import dagger.Module;
|
|
||||||
import dagger.Provides;
|
|
||||||
|
|
||||||
@Module
|
|
||||||
public class ConnectionModule {
|
|
||||||
|
|
||||||
@Provides
|
|
||||||
ConnectionManager provideConnectionManager(
|
|
||||||
ConnectionManagerImpl connectionManager) {
|
|
||||||
return connectionManager;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Provides
|
|
||||||
@Singleton
|
|
||||||
ConnectionRegistry provideConnectionRegistry(
|
|
||||||
ConnectionRegistryImpl connectionRegistry) {
|
|
||||||
return connectionRegistry;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,283 +0,0 @@
|
|||||||
package org.briarproject.bramble.connection;
|
|
||||||
|
|
||||||
import org.briarproject.bramble.api.Bytes;
|
|
||||||
import org.briarproject.bramble.api.connection.ConnectionRegistry;
|
|
||||||
import org.briarproject.bramble.api.connection.InterruptibleConnection;
|
|
||||||
import org.briarproject.bramble.api.contact.ContactId;
|
|
||||||
import org.briarproject.bramble.api.contact.PendingContactId;
|
|
||||||
import org.briarproject.bramble.api.event.EventBus;
|
|
||||||
import org.briarproject.bramble.api.nullsafety.NotNullByDefault;
|
|
||||||
import org.briarproject.bramble.api.plugin.PluginConfig;
|
|
||||||
import org.briarproject.bramble.api.plugin.TransportId;
|
|
||||||
import org.briarproject.bramble.api.plugin.event.ConnectionClosedEvent;
|
|
||||||
import org.briarproject.bramble.api.plugin.event.ConnectionOpenedEvent;
|
|
||||||
import org.briarproject.bramble.api.plugin.event.ContactConnectedEvent;
|
|
||||||
import org.briarproject.bramble.api.plugin.event.ContactDisconnectedEvent;
|
|
||||||
import org.briarproject.bramble.api.rendezvous.event.RendezvousConnectionClosedEvent;
|
|
||||||
import org.briarproject.bramble.api.rendezvous.event.RendezvousConnectionOpenedEvent;
|
|
||||||
import org.briarproject.bramble.api.sync.Priority;
|
|
||||||
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.Collection;
|
|
||||||
import java.util.HashMap;
|
|
||||||
import java.util.HashSet;
|
|
||||||
import java.util.List;
|
|
||||||
import java.util.Map;
|
|
||||||
import java.util.Map.Entry;
|
|
||||||
import java.util.Set;
|
|
||||||
import java.util.logging.Logger;
|
|
||||||
|
|
||||||
import javax.annotation.Nullable;
|
|
||||||
import javax.annotation.concurrent.GuardedBy;
|
|
||||||
import javax.annotation.concurrent.ThreadSafe;
|
|
||||||
import javax.inject.Inject;
|
|
||||||
|
|
||||||
import static java.util.Collections.emptyList;
|
|
||||||
import static java.util.logging.Level.INFO;
|
|
||||||
import static java.util.logging.Logger.getLogger;
|
|
||||||
|
|
||||||
@ThreadSafe
|
|
||||||
@NotNullByDefault
|
|
||||||
class ConnectionRegistryImpl implements ConnectionRegistry {
|
|
||||||
|
|
||||||
private static final Logger LOG =
|
|
||||||
getLogger(ConnectionRegistryImpl.class.getName());
|
|
||||||
|
|
||||||
private final EventBus eventBus;
|
|
||||||
private final Map<TransportId, List<TransportId>> transportPrefs;
|
|
||||||
|
|
||||||
private final Object lock = new Object();
|
|
||||||
@GuardedBy("lock")
|
|
||||||
private final Map<ContactId, List<ConnectionRecord>> contactConnections;
|
|
||||||
@GuardedBy("lock")
|
|
||||||
private final Set<PendingContactId> connectedPendingContacts;
|
|
||||||
|
|
||||||
@Inject
|
|
||||||
ConnectionRegistryImpl(EventBus eventBus, PluginConfig pluginConfig) {
|
|
||||||
this.eventBus = eventBus;
|
|
||||||
transportPrefs = pluginConfig.getTransportPreferences();
|
|
||||||
contactConnections = new HashMap<>();
|
|
||||||
connectedPendingContacts = new HashSet<>();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void registerIncomingConnection(ContactId c, TransportId t,
|
|
||||||
InterruptibleConnection conn) {
|
|
||||||
registerConnection(c, t, conn, true);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void registerOutgoingConnection(ContactId c, TransportId t,
|
|
||||||
InterruptibleConnection conn, Priority priority) {
|
|
||||||
registerConnection(c, t, conn, false);
|
|
||||||
setPriority(c, t, conn, priority);
|
|
||||||
}
|
|
||||||
|
|
||||||
private void registerConnection(ContactId c, TransportId t,
|
|
||||||
InterruptibleConnection conn, boolean incoming) {
|
|
||||||
if (LOG.isLoggable(INFO)) {
|
|
||||||
if (incoming) LOG.info("Incoming connection registered: " + t);
|
|
||||||
else LOG.info("Outgoing connection registered: " + t);
|
|
||||||
}
|
|
||||||
boolean firstConnection;
|
|
||||||
synchronized (lock) {
|
|
||||||
List<ConnectionRecord> recs = contactConnections.get(c);
|
|
||||||
if (recs == null) {
|
|
||||||
recs = new ArrayList<>();
|
|
||||||
contactConnections.put(c, recs);
|
|
||||||
}
|
|
||||||
firstConnection = recs.isEmpty();
|
|
||||||
recs.add(new ConnectionRecord(t, conn));
|
|
||||||
}
|
|
||||||
eventBus.broadcast(new ConnectionOpenedEvent(c, t, incoming));
|
|
||||||
if (firstConnection) {
|
|
||||||
LOG.info("Contact connected");
|
|
||||||
eventBus.broadcast(new ContactConnectedEvent(c));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void setPriority(ContactId c, TransportId t,
|
|
||||||
InterruptibleConnection conn, Priority priority) {
|
|
||||||
if (LOG.isLoggable(INFO)) LOG.info("Setting connection priority: " + t);
|
|
||||||
List<InterruptibleConnection> toInterrupt;
|
|
||||||
boolean interruptNewConnection = false;
|
|
||||||
synchronized (lock) {
|
|
||||||
List<ConnectionRecord> recs = contactConnections.get(c);
|
|
||||||
if (recs == null) throw new IllegalArgumentException();
|
|
||||||
toInterrupt = new ArrayList<>(recs.size());
|
|
||||||
for (ConnectionRecord rec : recs) {
|
|
||||||
if (rec.conn == conn) {
|
|
||||||
// Store the priority of this connection
|
|
||||||
rec.priority = priority;
|
|
||||||
} else if (rec.priority != null) {
|
|
||||||
int compare = compareConnections(t, priority,
|
|
||||||
rec.transportId, rec.priority);
|
|
||||||
if (compare == -1) {
|
|
||||||
// The old connection is better than the new one
|
|
||||||
interruptNewConnection = true;
|
|
||||||
} else if (compare == 1 && !rec.interrupted) {
|
|
||||||
// The new connection is better than the old one
|
|
||||||
toInterrupt.add(rec.conn);
|
|
||||||
rec.interrupted = true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (interruptNewConnection) {
|
|
||||||
LOG.info("Interrupting new connection");
|
|
||||||
conn.interruptOutgoingSession();
|
|
||||||
}
|
|
||||||
for (InterruptibleConnection old : toInterrupt) {
|
|
||||||
LOG.info("Interrupting old connection");
|
|
||||||
old.interruptOutgoingSession();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private int compareConnections(TransportId tA, Priority pA, TransportId tB,
|
|
||||||
Priority pB) {
|
|
||||||
if (getBetterTransports(tA).contains(tB)) return -1;
|
|
||||||
if (getBetterTransports(tB).contains(tA)) return 1;
|
|
||||||
return tA.equals(tB) ? Bytes.compare(pA.getNonce(), pB.getNonce()) : 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
private List<TransportId> getBetterTransports(TransportId t) {
|
|
||||||
List<TransportId> better = transportPrefs.get(t);
|
|
||||||
return better == null ? emptyList() : better;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void unregisterConnection(ContactId c, TransportId t,
|
|
||||||
InterruptibleConnection conn, boolean incoming, boolean exception) {
|
|
||||||
if (LOG.isLoggable(INFO)) {
|
|
||||||
if (incoming) LOG.info("Incoming connection unregistered: " + t);
|
|
||||||
else LOG.info("Outgoing connection unregistered: " + t);
|
|
||||||
}
|
|
||||||
boolean lastConnection;
|
|
||||||
synchronized (lock) {
|
|
||||||
List<ConnectionRecord> recs = contactConnections.get(c);
|
|
||||||
if (recs == null || !recs.remove(new ConnectionRecord(t, conn)))
|
|
||||||
throw new IllegalArgumentException();
|
|
||||||
lastConnection = recs.isEmpty();
|
|
||||||
}
|
|
||||||
eventBus.broadcast(
|
|
||||||
new ConnectionClosedEvent(c, t, incoming, exception));
|
|
||||||
if (lastConnection) {
|
|
||||||
LOG.info("Contact disconnected");
|
|
||||||
eventBus.broadcast(new ContactDisconnectedEvent(c));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public Collection<ContactId> getConnectedContacts(TransportId t) {
|
|
||||||
synchronized (lock) {
|
|
||||||
List<ContactId> contactIds = new ArrayList<>();
|
|
||||||
for (Entry<ContactId, List<ConnectionRecord>> e :
|
|
||||||
contactConnections.entrySet()) {
|
|
||||||
for (ConnectionRecord rec : e.getValue()) {
|
|
||||||
if (rec.transportId.equals(t)) {
|
|
||||||
contactIds.add(e.getKey());
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (LOG.isLoggable(INFO)) {
|
|
||||||
LOG.info(contactIds.size() + " contacts connected: " + t);
|
|
||||||
}
|
|
||||||
return contactIds;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public Collection<ContactId> getConnectedOrBetterContacts(TransportId t) {
|
|
||||||
synchronized (lock) {
|
|
||||||
List<TransportId> better = getBetterTransports(t);
|
|
||||||
List<ContactId> contactIds = new ArrayList<>();
|
|
||||||
for (Entry<ContactId, List<ConnectionRecord>> e :
|
|
||||||
contactConnections.entrySet()) {
|
|
||||||
for (ConnectionRecord rec : e.getValue()) {
|
|
||||||
if (rec.transportId.equals(t) ||
|
|
||||||
better.contains(rec.transportId)) {
|
|
||||||
contactIds.add(e.getKey());
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (LOG.isLoggable(INFO)) {
|
|
||||||
LOG.info(contactIds.size()
|
|
||||||
+ " contacts connected or better: " + t);
|
|
||||||
}
|
|
||||||
return contactIds;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public boolean isConnected(ContactId c, TransportId t) {
|
|
||||||
synchronized (lock) {
|
|
||||||
List<ConnectionRecord> recs = contactConnections.get(c);
|
|
||||||
if (recs == null) return false;
|
|
||||||
for (ConnectionRecord rec : recs) {
|
|
||||||
if (rec.transportId.equals(t)) return true;
|
|
||||||
}
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public boolean isConnected(ContactId c) {
|
|
||||||
synchronized (lock) {
|
|
||||||
List<ConnectionRecord> recs = contactConnections.get(c);
|
|
||||||
return recs != null && !recs.isEmpty();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public boolean registerConnection(PendingContactId p) {
|
|
||||||
boolean added;
|
|
||||||
synchronized (lock) {
|
|
||||||
added = connectedPendingContacts.add(p);
|
|
||||||
}
|
|
||||||
if (added) eventBus.broadcast(new RendezvousConnectionOpenedEvent(p));
|
|
||||||
return added;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void unregisterConnection(PendingContactId p, boolean success) {
|
|
||||||
synchronized (lock) {
|
|
||||||
if (!connectedPendingContacts.remove(p))
|
|
||||||
throw new IllegalArgumentException();
|
|
||||||
}
|
|
||||||
eventBus.broadcast(new RendezvousConnectionClosedEvent(p, success));
|
|
||||||
}
|
|
||||||
|
|
||||||
private static class ConnectionRecord {
|
|
||||||
|
|
||||||
private final TransportId transportId;
|
|
||||||
private final InterruptibleConnection conn;
|
|
||||||
@GuardedBy("lock")
|
|
||||||
@Nullable
|
|
||||||
private Priority priority = null;
|
|
||||||
@GuardedBy("lock")
|
|
||||||
private boolean interrupted = false;
|
|
||||||
|
|
||||||
private ConnectionRecord(TransportId transportId,
|
|
||||||
InterruptibleConnection conn) {
|
|
||||||
this.transportId = transportId;
|
|
||||||
this.conn = conn;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public boolean equals(Object o) {
|
|
||||||
if (o instanceof ConnectionRecord) {
|
|
||||||
return conn == ((ConnectionRecord) o).conn;
|
|
||||||
} else {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public int hashCode() {
|
|
||||||
return conn.hashCode();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,109 +0,0 @@
|
|||||||
package org.briarproject.bramble.connection;
|
|
||||||
|
|
||||||
import org.briarproject.bramble.api.connection.ConnectionRegistry;
|
|
||||||
import org.briarproject.bramble.api.connection.InterruptibleConnection;
|
|
||||||
import org.briarproject.bramble.api.contact.ContactId;
|
|
||||||
import org.briarproject.bramble.api.nullsafety.NotNullByDefault;
|
|
||||||
import org.briarproject.bramble.api.plugin.TransportConnectionReader;
|
|
||||||
import org.briarproject.bramble.api.plugin.TransportConnectionWriter;
|
|
||||||
import org.briarproject.bramble.api.plugin.TransportId;
|
|
||||||
import org.briarproject.bramble.api.plugin.duplex.DuplexTransportConnection;
|
|
||||||
import org.briarproject.bramble.api.properties.TransportProperties;
|
|
||||||
import org.briarproject.bramble.api.properties.TransportPropertyManager;
|
|
||||||
import org.briarproject.bramble.api.sync.Priority;
|
|
||||||
import org.briarproject.bramble.api.sync.SyncSession;
|
|
||||||
import org.briarproject.bramble.api.sync.SyncSessionFactory;
|
|
||||||
import org.briarproject.bramble.api.transport.KeyManager;
|
|
||||||
import org.briarproject.bramble.api.transport.StreamContext;
|
|
||||||
import org.briarproject.bramble.api.transport.StreamReaderFactory;
|
|
||||||
import org.briarproject.bramble.api.transport.StreamWriter;
|
|
||||||
import org.briarproject.bramble.api.transport.StreamWriterFactory;
|
|
||||||
|
|
||||||
import java.io.IOException;
|
|
||||||
import java.util.concurrent.Executor;
|
|
||||||
|
|
||||||
import javax.annotation.Nullable;
|
|
||||||
import javax.annotation.concurrent.GuardedBy;
|
|
||||||
|
|
||||||
import static org.briarproject.bramble.api.nullsafety.NullSafety.requireNonNull;
|
|
||||||
|
|
||||||
@NotNullByDefault
|
|
||||||
abstract class DuplexSyncConnection extends SyncConnection
|
|
||||||
implements InterruptibleConnection {
|
|
||||||
|
|
||||||
final Executor ioExecutor;
|
|
||||||
final TransportId transportId;
|
|
||||||
final TransportConnectionReader reader;
|
|
||||||
final TransportConnectionWriter writer;
|
|
||||||
final TransportProperties remote;
|
|
||||||
|
|
||||||
private final Object interruptLock = new Object();
|
|
||||||
|
|
||||||
@GuardedBy("interruptLock")
|
|
||||||
@Nullable
|
|
||||||
private SyncSession outgoingSession = null;
|
|
||||||
@GuardedBy("interruptLock")
|
|
||||||
private boolean interruptWaiting = false;
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void interruptOutgoingSession() {
|
|
||||||
SyncSession out = null;
|
|
||||||
synchronized (interruptLock) {
|
|
||||||
if (outgoingSession == null) interruptWaiting = true;
|
|
||||||
else out = outgoingSession;
|
|
||||||
}
|
|
||||||
if (out != null) out.interrupt();
|
|
||||||
}
|
|
||||||
|
|
||||||
void setOutgoingSession(SyncSession outgoingSession) {
|
|
||||||
boolean interruptWasWaiting = false;
|
|
||||||
synchronized (interruptLock) {
|
|
||||||
this.outgoingSession = outgoingSession;
|
|
||||||
if (interruptWaiting) {
|
|
||||||
interruptWasWaiting = true;
|
|
||||||
interruptWaiting = false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (interruptWasWaiting) outgoingSession.interrupt();
|
|
||||||
}
|
|
||||||
|
|
||||||
DuplexSyncConnection(KeyManager keyManager,
|
|
||||||
ConnectionRegistry connectionRegistry,
|
|
||||||
StreamReaderFactory streamReaderFactory,
|
|
||||||
StreamWriterFactory streamWriterFactory,
|
|
||||||
SyncSessionFactory syncSessionFactory,
|
|
||||||
TransportPropertyManager transportPropertyManager,
|
|
||||||
Executor ioExecutor, TransportId transportId,
|
|
||||||
DuplexTransportConnection connection) {
|
|
||||||
super(keyManager, connectionRegistry, streamReaderFactory,
|
|
||||||
streamWriterFactory, syncSessionFactory,
|
|
||||||
transportPropertyManager);
|
|
||||||
this.ioExecutor = ioExecutor;
|
|
||||||
this.transportId = transportId;
|
|
||||||
reader = connection.getReader();
|
|
||||||
writer = connection.getWriter();
|
|
||||||
remote = connection.getRemoteProperties();
|
|
||||||
}
|
|
||||||
|
|
||||||
void onReadError(boolean recognised) {
|
|
||||||
disposeOnError(reader, recognised);
|
|
||||||
disposeOnError(writer);
|
|
||||||
interruptOutgoingSession();
|
|
||||||
}
|
|
||||||
|
|
||||||
void onWriteError() {
|
|
||||||
disposeOnError(reader, true);
|
|
||||||
disposeOnError(writer);
|
|
||||||
}
|
|
||||||
|
|
||||||
SyncSession createDuplexOutgoingSession(StreamContext ctx,
|
|
||||||
TransportConnectionWriter w, @Nullable Priority priority)
|
|
||||||
throws IOException {
|
|
||||||
StreamWriter streamWriter = streamWriterFactory.createStreamWriter(
|
|
||||||
w.getOutputStream(), ctx);
|
|
||||||
ContactId c = requireNonNull(ctx.getContactId());
|
|
||||||
return syncSessionFactory.createDuplexOutgoingSession(c,
|
|
||||||
ctx.getTransportId(), w.getMaxLatency(), w.getMaxIdleTime(),
|
|
||||||
streamWriter, priority);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,72 +0,0 @@
|
|||||||
package org.briarproject.bramble.connection;
|
|
||||||
|
|
||||||
import org.briarproject.bramble.api.connection.ConnectionManager;
|
|
||||||
import org.briarproject.bramble.api.connection.ConnectionRegistry;
|
|
||||||
import org.briarproject.bramble.api.contact.ContactExchangeManager;
|
|
||||||
import org.briarproject.bramble.api.contact.HandshakeManager;
|
|
||||||
import org.briarproject.bramble.api.contact.PendingContactId;
|
|
||||||
import org.briarproject.bramble.api.db.DbException;
|
|
||||||
import org.briarproject.bramble.api.nullsafety.NotNullByDefault;
|
|
||||||
import org.briarproject.bramble.api.plugin.TransportConnectionReader;
|
|
||||||
import org.briarproject.bramble.api.plugin.TransportConnectionWriter;
|
|
||||||
import org.briarproject.bramble.api.plugin.TransportId;
|
|
||||||
import org.briarproject.bramble.api.plugin.duplex.DuplexTransportConnection;
|
|
||||||
import org.briarproject.bramble.api.transport.KeyManager;
|
|
||||||
import org.briarproject.bramble.api.transport.StreamContext;
|
|
||||||
import org.briarproject.bramble.api.transport.StreamReaderFactory;
|
|
||||||
import org.briarproject.bramble.api.transport.StreamWriterFactory;
|
|
||||||
|
|
||||||
import javax.annotation.Nullable;
|
|
||||||
|
|
||||||
import static java.util.logging.Level.WARNING;
|
|
||||||
import static org.briarproject.bramble.util.LogUtils.logException;
|
|
||||||
|
|
||||||
@NotNullByDefault
|
|
||||||
abstract class HandshakeConnection extends Connection {
|
|
||||||
|
|
||||||
final HandshakeManager handshakeManager;
|
|
||||||
final ContactExchangeManager contactExchangeManager;
|
|
||||||
final ConnectionManager connectionManager;
|
|
||||||
final PendingContactId pendingContactId;
|
|
||||||
final TransportId transportId;
|
|
||||||
final DuplexTransportConnection connection;
|
|
||||||
final TransportConnectionReader reader;
|
|
||||||
final TransportConnectionWriter writer;
|
|
||||||
|
|
||||||
HandshakeConnection(KeyManager keyManager,
|
|
||||||
ConnectionRegistry connectionRegistry,
|
|
||||||
StreamReaderFactory streamReaderFactory,
|
|
||||||
StreamWriterFactory streamWriterFactory,
|
|
||||||
HandshakeManager handshakeManager,
|
|
||||||
ContactExchangeManager contactExchangeManager,
|
|
||||||
ConnectionManager connectionManager,
|
|
||||||
PendingContactId pendingContactId,
|
|
||||||
TransportId transportId, DuplexTransportConnection connection) {
|
|
||||||
super(keyManager, connectionRegistry, streamReaderFactory,
|
|
||||||
streamWriterFactory);
|
|
||||||
this.handshakeManager = handshakeManager;
|
|
||||||
this.contactExchangeManager = contactExchangeManager;
|
|
||||||
this.connectionManager = connectionManager;
|
|
||||||
this.pendingContactId = pendingContactId;
|
|
||||||
this.transportId = transportId;
|
|
||||||
this.connection = connection;
|
|
||||||
reader = connection.getReader();
|
|
||||||
writer = connection.getWriter();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Nullable
|
|
||||||
StreamContext allocateStreamContext(PendingContactId pendingContactId,
|
|
||||||
TransportId transportId) {
|
|
||||||
try {
|
|
||||||
return keyManager.getStreamContext(pendingContactId, transportId);
|
|
||||||
} catch (DbException e) {
|
|
||||||
logException(LOG, WARNING, e);
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
void onError(boolean recognised) {
|
|
||||||
disposeOnError(reader, recognised);
|
|
||||||
disposeOnError(writer);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,107 +0,0 @@
|
|||||||
package org.briarproject.bramble.connection;
|
|
||||||
|
|
||||||
import org.briarproject.bramble.api.connection.ConnectionRegistry;
|
|
||||||
import org.briarproject.bramble.api.contact.ContactId;
|
|
||||||
import org.briarproject.bramble.api.db.DbException;
|
|
||||||
import org.briarproject.bramble.api.nullsafety.NotNullByDefault;
|
|
||||||
import org.briarproject.bramble.api.plugin.TransportId;
|
|
||||||
import org.briarproject.bramble.api.plugin.duplex.DuplexTransportConnection;
|
|
||||||
import org.briarproject.bramble.api.properties.TransportPropertyManager;
|
|
||||||
import org.briarproject.bramble.api.sync.PriorityHandler;
|
|
||||||
import org.briarproject.bramble.api.sync.SyncSession;
|
|
||||||
import org.briarproject.bramble.api.sync.SyncSessionFactory;
|
|
||||||
import org.briarproject.bramble.api.transport.KeyManager;
|
|
||||||
import org.briarproject.bramble.api.transport.StreamContext;
|
|
||||||
import org.briarproject.bramble.api.transport.StreamReaderFactory;
|
|
||||||
import org.briarproject.bramble.api.transport.StreamWriterFactory;
|
|
||||||
|
|
||||||
import java.io.IOException;
|
|
||||||
import java.util.concurrent.Executor;
|
|
||||||
|
|
||||||
import static java.util.logging.Level.WARNING;
|
|
||||||
import static org.briarproject.bramble.util.LogUtils.logException;
|
|
||||||
|
|
||||||
@NotNullByDefault
|
|
||||||
class IncomingDuplexSyncConnection extends DuplexSyncConnection
|
|
||||||
implements Runnable {
|
|
||||||
|
|
||||||
IncomingDuplexSyncConnection(KeyManager keyManager,
|
|
||||||
ConnectionRegistry connectionRegistry,
|
|
||||||
StreamReaderFactory streamReaderFactory,
|
|
||||||
StreamWriterFactory streamWriterFactory,
|
|
||||||
SyncSessionFactory syncSessionFactory,
|
|
||||||
TransportPropertyManager transportPropertyManager,
|
|
||||||
Executor ioExecutor, TransportId transportId,
|
|
||||||
DuplexTransportConnection connection) {
|
|
||||||
super(keyManager, connectionRegistry, streamReaderFactory,
|
|
||||||
streamWriterFactory, syncSessionFactory,
|
|
||||||
transportPropertyManager, ioExecutor, transportId, connection);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void run() {
|
|
||||||
// Read and recognise the tag
|
|
||||||
StreamContext ctx = recogniseTag(reader, transportId);
|
|
||||||
if (ctx == null) {
|
|
||||||
LOG.info("Unrecognised tag");
|
|
||||||
onReadError(false);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
ContactId contactId = ctx.getContactId();
|
|
||||||
if (contactId == null) {
|
|
||||||
LOG.warning("Expected contact tag, got rendezvous tag");
|
|
||||||
onReadError(true);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
if (ctx.isHandshakeMode()) {
|
|
||||||
// TODO: Support handshake mode for contacts
|
|
||||||
LOG.warning("Received handshake tag, expected rotation mode");
|
|
||||||
onReadError(true);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
connectionRegistry.registerIncomingConnection(contactId, transportId,
|
|
||||||
this);
|
|
||||||
// Start the outgoing session on another thread
|
|
||||||
ioExecutor.execute(() -> runOutgoingSession(contactId));
|
|
||||||
try {
|
|
||||||
// Store any transport properties discovered from the connection
|
|
||||||
transportPropertyManager.addRemotePropertiesFromConnection(
|
|
||||||
contactId, transportId, remote);
|
|
||||||
// Update the connection registry when we receive our priority
|
|
||||||
PriorityHandler handler = p -> connectionRegistry.setPriority(
|
|
||||||
contactId, transportId, this, p);
|
|
||||||
// Create and run the incoming session
|
|
||||||
createIncomingSession(ctx, reader, handler).run();
|
|
||||||
reader.dispose(false, true);
|
|
||||||
interruptOutgoingSession();
|
|
||||||
connectionRegistry.unregisterConnection(contactId, transportId,
|
|
||||||
this, true, false);
|
|
||||||
} catch (DbException | IOException e) {
|
|
||||||
logException(LOG, WARNING, e);
|
|
||||||
onReadError(true);
|
|
||||||
connectionRegistry.unregisterConnection(contactId, transportId,
|
|
||||||
this, true, true);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private void runOutgoingSession(ContactId contactId) {
|
|
||||||
// Allocate a stream context
|
|
||||||
StreamContext ctx = allocateStreamContext(contactId, transportId);
|
|
||||||
if (ctx == null) {
|
|
||||||
LOG.warning("Could not allocate stream context");
|
|
||||||
onWriteError();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
try {
|
|
||||||
// Create and run the outgoing session
|
|
||||||
SyncSession out = createDuplexOutgoingSession(ctx, writer, null);
|
|
||||||
setOutgoingSession(out);
|
|
||||||
out.run();
|
|
||||||
writer.dispose(false);
|
|
||||||
} catch (IOException e) {
|
|
||||||
logException(LOG, WARNING, e);
|
|
||||||
onWriteError();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@@ -1,93 +0,0 @@
|
|||||||
package org.briarproject.bramble.connection;
|
|
||||||
|
|
||||||
import org.briarproject.bramble.api.connection.ConnectionManager;
|
|
||||||
import org.briarproject.bramble.api.connection.ConnectionRegistry;
|
|
||||||
import org.briarproject.bramble.api.contact.ContactExchangeManager;
|
|
||||||
import org.briarproject.bramble.api.contact.HandshakeManager;
|
|
||||||
import org.briarproject.bramble.api.contact.HandshakeManager.HandshakeResult;
|
|
||||||
import org.briarproject.bramble.api.contact.PendingContactId;
|
|
||||||
import org.briarproject.bramble.api.db.DbException;
|
|
||||||
import org.briarproject.bramble.api.nullsafety.NotNullByDefault;
|
|
||||||
import org.briarproject.bramble.api.plugin.TransportId;
|
|
||||||
import org.briarproject.bramble.api.plugin.duplex.DuplexTransportConnection;
|
|
||||||
import org.briarproject.bramble.api.transport.KeyManager;
|
|
||||||
import org.briarproject.bramble.api.transport.StreamContext;
|
|
||||||
import org.briarproject.bramble.api.transport.StreamReaderFactory;
|
|
||||||
import org.briarproject.bramble.api.transport.StreamWriter;
|
|
||||||
import org.briarproject.bramble.api.transport.StreamWriterFactory;
|
|
||||||
|
|
||||||
import java.io.IOException;
|
|
||||||
import java.io.InputStream;
|
|
||||||
|
|
||||||
import static java.util.logging.Level.WARNING;
|
|
||||||
import static org.briarproject.bramble.util.LogUtils.logException;
|
|
||||||
|
|
||||||
@NotNullByDefault
|
|
||||||
class IncomingHandshakeConnection extends HandshakeConnection
|
|
||||||
implements Runnable {
|
|
||||||
|
|
||||||
IncomingHandshakeConnection(KeyManager keyManager,
|
|
||||||
ConnectionRegistry connectionRegistry,
|
|
||||||
StreamReaderFactory streamReaderFactory,
|
|
||||||
StreamWriterFactory streamWriterFactory,
|
|
||||||
HandshakeManager handshakeManager,
|
|
||||||
ContactExchangeManager contactExchangeManager,
|
|
||||||
ConnectionManager connectionManager,
|
|
||||||
PendingContactId pendingContactId,
|
|
||||||
TransportId transportId, DuplexTransportConnection connection) {
|
|
||||||
super(keyManager, connectionRegistry, streamReaderFactory,
|
|
||||||
streamWriterFactory, handshakeManager, contactExchangeManager,
|
|
||||||
connectionManager, pendingContactId, transportId, connection);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void run() {
|
|
||||||
// Read and recognise the tag
|
|
||||||
StreamContext ctxIn = recogniseTag(reader, transportId);
|
|
||||||
if (ctxIn == null) {
|
|
||||||
LOG.info("Unrecognised tag");
|
|
||||||
onError(false);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
PendingContactId inPendingContactId = ctxIn.getPendingContactId();
|
|
||||||
if (inPendingContactId == null) {
|
|
||||||
LOG.warning("Expected rendezvous tag, got contact tag");
|
|
||||||
onError(true);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
// Allocate the outgoing stream context
|
|
||||||
StreamContext ctxOut =
|
|
||||||
allocateStreamContext(pendingContactId, transportId);
|
|
||||||
if (ctxOut == null) {
|
|
||||||
LOG.warning("Could not allocate stream context");
|
|
||||||
onError(true);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
// Close the connection if it's redundant
|
|
||||||
if (!connectionRegistry.registerConnection(pendingContactId)) {
|
|
||||||
LOG.info("Redundant rendezvous connection");
|
|
||||||
onError(true);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
// Handshake and exchange contacts
|
|
||||||
try {
|
|
||||||
InputStream in = streamReaderFactory.createStreamReader(
|
|
||||||
reader.getInputStream(), ctxIn);
|
|
||||||
// Flush the output stream to send the outgoing stream header
|
|
||||||
StreamWriter out = streamWriterFactory.createStreamWriter(
|
|
||||||
writer.getOutputStream(), ctxOut);
|
|
||||||
out.getOutputStream().flush();
|
|
||||||
HandshakeResult result =
|
|
||||||
handshakeManager.handshake(pendingContactId, in, out);
|
|
||||||
contactExchangeManager.exchangeContacts(pendingContactId,
|
|
||||||
connection, result.getMasterKey(), result.isAlice(), false);
|
|
||||||
connectionRegistry.unregisterConnection(pendingContactId, true);
|
|
||||||
// Reuse the connection as a transport connection
|
|
||||||
connectionManager.manageIncomingConnection(transportId, connection);
|
|
||||||
} catch (IOException | DbException e) {
|
|
||||||
logException(LOG, WARNING, e);
|
|
||||||
onError(true);
|
|
||||||
connectionRegistry.unregisterConnection(pendingContactId, false);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,79 +0,0 @@
|
|||||||
package org.briarproject.bramble.connection;
|
|
||||||
|
|
||||||
import org.briarproject.bramble.api.connection.ConnectionRegistry;
|
|
||||||
import org.briarproject.bramble.api.contact.ContactId;
|
|
||||||
import org.briarproject.bramble.api.nullsafety.NotNullByDefault;
|
|
||||||
import org.briarproject.bramble.api.plugin.TransportConnectionReader;
|
|
||||||
import org.briarproject.bramble.api.plugin.TransportId;
|
|
||||||
import org.briarproject.bramble.api.properties.TransportPropertyManager;
|
|
||||||
import org.briarproject.bramble.api.sync.PriorityHandler;
|
|
||||||
import org.briarproject.bramble.api.sync.SyncSessionFactory;
|
|
||||||
import org.briarproject.bramble.api.transport.KeyManager;
|
|
||||||
import org.briarproject.bramble.api.transport.StreamContext;
|
|
||||||
import org.briarproject.bramble.api.transport.StreamReaderFactory;
|
|
||||||
import org.briarproject.bramble.api.transport.StreamWriterFactory;
|
|
||||||
|
|
||||||
import java.io.IOException;
|
|
||||||
|
|
||||||
import static java.util.logging.Level.WARNING;
|
|
||||||
import static org.briarproject.bramble.util.LogUtils.logException;
|
|
||||||
|
|
||||||
@NotNullByDefault
|
|
||||||
class IncomingSimplexSyncConnection extends SyncConnection implements Runnable {
|
|
||||||
|
|
||||||
private final TransportId transportId;
|
|
||||||
private final TransportConnectionReader reader;
|
|
||||||
|
|
||||||
IncomingSimplexSyncConnection(KeyManager keyManager,
|
|
||||||
ConnectionRegistry connectionRegistry,
|
|
||||||
StreamReaderFactory streamReaderFactory,
|
|
||||||
StreamWriterFactory streamWriterFactory,
|
|
||||||
SyncSessionFactory syncSessionFactory,
|
|
||||||
TransportPropertyManager transportPropertyManager,
|
|
||||||
TransportId transportId, TransportConnectionReader reader) {
|
|
||||||
super(keyManager, connectionRegistry, streamReaderFactory,
|
|
||||||
streamWriterFactory, syncSessionFactory,
|
|
||||||
transportPropertyManager);
|
|
||||||
this.transportId = transportId;
|
|
||||||
this.reader = reader;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void run() {
|
|
||||||
// Read and recognise the tag
|
|
||||||
StreamContext ctx = recogniseTag(reader, transportId);
|
|
||||||
if (ctx == null) {
|
|
||||||
LOG.info("Unrecognised tag");
|
|
||||||
onError(false);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
ContactId contactId = ctx.getContactId();
|
|
||||||
if (contactId == null) {
|
|
||||||
LOG.warning("Received rendezvous stream, expected contact");
|
|
||||||
onError(true);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
if (ctx.isHandshakeMode()) {
|
|
||||||
// TODO: Support handshake mode for contacts
|
|
||||||
LOG.warning("Received handshake tag, expected rotation mode");
|
|
||||||
onError(true);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
try {
|
|
||||||
// We don't expect to receive a priority for this connection
|
|
||||||
PriorityHandler handler = p ->
|
|
||||||
LOG.info("Ignoring priority for simplex connection");
|
|
||||||
// Create and run the incoming session
|
|
||||||
createIncomingSession(ctx, reader, handler).run();
|
|
||||||
reader.dispose(false, true);
|
|
||||||
} catch (IOException e) {
|
|
||||||
logException(LOG, WARNING, e);
|
|
||||||
onError(true);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private void onError(boolean recognised) {
|
|
||||||
disposeOnError(reader, recognised);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@@ -1,140 +0,0 @@
|
|||||||
package org.briarproject.bramble.connection;
|
|
||||||
|
|
||||||
import org.briarproject.bramble.api.connection.ConnectionRegistry;
|
|
||||||
import org.briarproject.bramble.api.contact.ContactId;
|
|
||||||
import org.briarproject.bramble.api.db.DbException;
|
|
||||||
import org.briarproject.bramble.api.nullsafety.NotNullByDefault;
|
|
||||||
import org.briarproject.bramble.api.plugin.TransportId;
|
|
||||||
import org.briarproject.bramble.api.plugin.duplex.DuplexTransportConnection;
|
|
||||||
import org.briarproject.bramble.api.properties.TransportPropertyManager;
|
|
||||||
import org.briarproject.bramble.api.sync.Priority;
|
|
||||||
import org.briarproject.bramble.api.sync.PriorityHandler;
|
|
||||||
import org.briarproject.bramble.api.sync.SyncSession;
|
|
||||||
import org.briarproject.bramble.api.sync.SyncSessionFactory;
|
|
||||||
import org.briarproject.bramble.api.transport.KeyManager;
|
|
||||||
import org.briarproject.bramble.api.transport.StreamContext;
|
|
||||||
import org.briarproject.bramble.api.transport.StreamReaderFactory;
|
|
||||||
import org.briarproject.bramble.api.transport.StreamWriterFactory;
|
|
||||||
|
|
||||||
import java.io.IOException;
|
|
||||||
import java.security.SecureRandom;
|
|
||||||
import java.util.concurrent.Executor;
|
|
||||||
|
|
||||||
import static java.util.logging.Level.WARNING;
|
|
||||||
import static org.briarproject.bramble.api.sync.SyncConstants.PRIORITY_NONCE_BYTES;
|
|
||||||
import static org.briarproject.bramble.util.LogUtils.logException;
|
|
||||||
|
|
||||||
@NotNullByDefault
|
|
||||||
class OutgoingDuplexSyncConnection extends DuplexSyncConnection
|
|
||||||
implements Runnable {
|
|
||||||
|
|
||||||
private final SecureRandom secureRandom;
|
|
||||||
private final ContactId contactId;
|
|
||||||
|
|
||||||
OutgoingDuplexSyncConnection(KeyManager keyManager,
|
|
||||||
ConnectionRegistry connectionRegistry,
|
|
||||||
StreamReaderFactory streamReaderFactory,
|
|
||||||
StreamWriterFactory streamWriterFactory,
|
|
||||||
SyncSessionFactory syncSessionFactory,
|
|
||||||
TransportPropertyManager transportPropertyManager,
|
|
||||||
Executor ioExecutor, SecureRandom secureRandom, ContactId contactId,
|
|
||||||
TransportId transportId, DuplexTransportConnection connection) {
|
|
||||||
super(keyManager, connectionRegistry, streamReaderFactory,
|
|
||||||
streamWriterFactory, syncSessionFactory,
|
|
||||||
transportPropertyManager, ioExecutor, transportId, connection);
|
|
||||||
this.secureRandom = secureRandom;
|
|
||||||
this.contactId = contactId;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void run() {
|
|
||||||
// Allocate a stream context
|
|
||||||
StreamContext ctx = allocateStreamContext(contactId, transportId);
|
|
||||||
if (ctx == null) {
|
|
||||||
LOG.warning("Could not allocate stream context");
|
|
||||||
onWriteError();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
if (ctx.isHandshakeMode()) {
|
|
||||||
// TODO: Support handshake mode for contacts
|
|
||||||
LOG.warning("Cannot use handshake mode stream context");
|
|
||||||
onWriteError();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
// Start the incoming session on another thread
|
|
||||||
Priority priority = generatePriority();
|
|
||||||
ioExecutor.execute(() -> runIncomingSession(priority));
|
|
||||||
try {
|
|
||||||
// Create and run the outgoing session
|
|
||||||
SyncSession out =
|
|
||||||
createDuplexOutgoingSession(ctx, writer, priority);
|
|
||||||
setOutgoingSession(out);
|
|
||||||
out.run();
|
|
||||||
writer.dispose(false);
|
|
||||||
} catch (IOException e) {
|
|
||||||
logException(LOG, WARNING, e);
|
|
||||||
onWriteError();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private void runIncomingSession(Priority priority) {
|
|
||||||
// Read and recognise the tag
|
|
||||||
StreamContext ctx = recogniseTag(reader, transportId);
|
|
||||||
// Unrecognised tags are suspicious in this case
|
|
||||||
if (ctx == null) {
|
|
||||||
LOG.warning("Unrecognised tag for returning stream");
|
|
||||||
onReadError();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
// Check that the stream comes from the expected contact
|
|
||||||
ContactId inContactId = ctx.getContactId();
|
|
||||||
if (inContactId == null) {
|
|
||||||
LOG.warning("Expected contact tag, got rendezvous tag");
|
|
||||||
onReadError();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
if (!contactId.equals(inContactId)) {
|
|
||||||
LOG.warning("Wrong contact ID for returning stream");
|
|
||||||
onReadError();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
if (ctx.isHandshakeMode()) {
|
|
||||||
// TODO: Support handshake mode for contacts
|
|
||||||
LOG.warning("Received handshake tag, expected rotation mode");
|
|
||||||
onReadError();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
connectionRegistry.registerOutgoingConnection(contactId, transportId,
|
|
||||||
this, priority);
|
|
||||||
try {
|
|
||||||
// Store any transport properties discovered from the connection
|
|
||||||
transportPropertyManager.addRemotePropertiesFromConnection(
|
|
||||||
contactId, transportId, remote);
|
|
||||||
// We don't expect to receive a priority for this connection
|
|
||||||
PriorityHandler handler = p ->
|
|
||||||
LOG.info("Ignoring priority for outgoing connection");
|
|
||||||
// Create and run the incoming session
|
|
||||||
createIncomingSession(ctx, reader, handler).run();
|
|
||||||
reader.dispose(false, true);
|
|
||||||
interruptOutgoingSession();
|
|
||||||
connectionRegistry.unregisterConnection(contactId, transportId,
|
|
||||||
this, false, false);
|
|
||||||
} catch (DbException | IOException e) {
|
|
||||||
logException(LOG, WARNING, e);
|
|
||||||
onReadError();
|
|
||||||
connectionRegistry.unregisterConnection(contactId, transportId,
|
|
||||||
this, false, true);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private void onReadError() {
|
|
||||||
// 'Recognised' is always true for outgoing connections
|
|
||||||
onReadError(true);
|
|
||||||
}
|
|
||||||
|
|
||||||
private Priority generatePriority() {
|
|
||||||
byte[] nonce = new byte[PRIORITY_NONCE_BYTES];
|
|
||||||
secureRandom.nextBytes(nonce);
|
|
||||||
return new Priority(nonce);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,115 +0,0 @@
|
|||||||
package org.briarproject.bramble.connection;
|
|
||||||
|
|
||||||
import org.briarproject.bramble.api.connection.ConnectionManager;
|
|
||||||
import org.briarproject.bramble.api.connection.ConnectionRegistry;
|
|
||||||
import org.briarproject.bramble.api.contact.Contact;
|
|
||||||
import org.briarproject.bramble.api.contact.ContactExchangeManager;
|
|
||||||
import org.briarproject.bramble.api.contact.HandshakeManager;
|
|
||||||
import org.briarproject.bramble.api.contact.HandshakeManager.HandshakeResult;
|
|
||||||
import org.briarproject.bramble.api.contact.PendingContactId;
|
|
||||||
import org.briarproject.bramble.api.db.DbException;
|
|
||||||
import org.briarproject.bramble.api.nullsafety.NotNullByDefault;
|
|
||||||
import org.briarproject.bramble.api.plugin.TransportId;
|
|
||||||
import org.briarproject.bramble.api.plugin.duplex.DuplexTransportConnection;
|
|
||||||
import org.briarproject.bramble.api.transport.KeyManager;
|
|
||||||
import org.briarproject.bramble.api.transport.StreamContext;
|
|
||||||
import org.briarproject.bramble.api.transport.StreamReaderFactory;
|
|
||||||
import org.briarproject.bramble.api.transport.StreamWriter;
|
|
||||||
import org.briarproject.bramble.api.transport.StreamWriterFactory;
|
|
||||||
|
|
||||||
import java.io.IOException;
|
|
||||||
import java.io.InputStream;
|
|
||||||
|
|
||||||
import static java.util.logging.Level.WARNING;
|
|
||||||
import static org.briarproject.bramble.util.LogUtils.logException;
|
|
||||||
|
|
||||||
@NotNullByDefault
|
|
||||||
class OutgoingHandshakeConnection extends HandshakeConnection
|
|
||||||
implements Runnable {
|
|
||||||
|
|
||||||
OutgoingHandshakeConnection(KeyManager keyManager,
|
|
||||||
ConnectionRegistry connectionRegistry,
|
|
||||||
StreamReaderFactory streamReaderFactory,
|
|
||||||
StreamWriterFactory streamWriterFactory,
|
|
||||||
HandshakeManager handshakeManager,
|
|
||||||
ContactExchangeManager contactExchangeManager,
|
|
||||||
ConnectionManager connectionManager,
|
|
||||||
PendingContactId pendingContactId,
|
|
||||||
TransportId transportId, DuplexTransportConnection connection) {
|
|
||||||
super(keyManager, connectionRegistry, streamReaderFactory,
|
|
||||||
streamWriterFactory, handshakeManager, contactExchangeManager,
|
|
||||||
connectionManager, pendingContactId, transportId, connection);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void run() {
|
|
||||||
// Allocate the outgoing stream context
|
|
||||||
StreamContext ctxOut =
|
|
||||||
allocateStreamContext(pendingContactId, transportId);
|
|
||||||
if (ctxOut == null) {
|
|
||||||
LOG.warning("Could not allocate stream context");
|
|
||||||
onError();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
// Flush the output stream to send the outgoing stream header
|
|
||||||
StreamWriter out;
|
|
||||||
try {
|
|
||||||
out = streamWriterFactory.createStreamWriter(
|
|
||||||
writer.getOutputStream(), ctxOut);
|
|
||||||
out.getOutputStream().flush();
|
|
||||||
} catch (IOException e) {
|
|
||||||
logException(LOG, WARNING, e);
|
|
||||||
onError();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
// Read and recognise the tag
|
|
||||||
StreamContext ctxIn = recogniseTag(reader, transportId);
|
|
||||||
// Unrecognised tags are suspicious in this case
|
|
||||||
if (ctxIn == null) {
|
|
||||||
LOG.warning("Unrecognised tag for returning stream");
|
|
||||||
onError();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
// Check that the stream comes from the expected pending contact
|
|
||||||
PendingContactId inPendingContactId = ctxIn.getPendingContactId();
|
|
||||||
if (inPendingContactId == null) {
|
|
||||||
LOG.warning("Expected rendezvous tag, got contact tag");
|
|
||||||
onError();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
if (!inPendingContactId.equals(pendingContactId)) {
|
|
||||||
LOG.warning("Wrong pending contact ID for returning stream");
|
|
||||||
onError();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
// Close the connection if it's redundant
|
|
||||||
if (!connectionRegistry.registerConnection(pendingContactId)) {
|
|
||||||
LOG.info("Redundant rendezvous connection");
|
|
||||||
onError();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
// Handshake and exchange contacts
|
|
||||||
try {
|
|
||||||
InputStream in = streamReaderFactory.createStreamReader(
|
|
||||||
reader.getInputStream(), ctxIn);
|
|
||||||
HandshakeResult result =
|
|
||||||
handshakeManager.handshake(pendingContactId, in, out);
|
|
||||||
Contact contact = contactExchangeManager.exchangeContacts(
|
|
||||||
pendingContactId, connection, result.getMasterKey(),
|
|
||||||
result.isAlice(), false);
|
|
||||||
connectionRegistry.unregisterConnection(pendingContactId, true);
|
|
||||||
// Reuse the connection as a transport connection
|
|
||||||
connectionManager.manageOutgoingConnection(contact.getId(),
|
|
||||||
transportId, connection);
|
|
||||||
} catch (IOException | DbException e) {
|
|
||||||
logException(LOG, WARNING, e);
|
|
||||||
onError();
|
|
||||||
connectionRegistry.unregisterConnection(pendingContactId, false);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private void onError() {
|
|
||||||
// 'Recognised' is always true for outgoing connections
|
|
||||||
onError(true);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,78 +0,0 @@
|
|||||||
package org.briarproject.bramble.connection;
|
|
||||||
|
|
||||||
import org.briarproject.bramble.api.connection.ConnectionRegistry;
|
|
||||||
import org.briarproject.bramble.api.contact.ContactId;
|
|
||||||
import org.briarproject.bramble.api.nullsafety.NotNullByDefault;
|
|
||||||
import org.briarproject.bramble.api.plugin.TransportConnectionWriter;
|
|
||||||
import org.briarproject.bramble.api.plugin.TransportId;
|
|
||||||
import org.briarproject.bramble.api.properties.TransportPropertyManager;
|
|
||||||
import org.briarproject.bramble.api.sync.SyncSession;
|
|
||||||
import org.briarproject.bramble.api.sync.SyncSessionFactory;
|
|
||||||
import org.briarproject.bramble.api.transport.KeyManager;
|
|
||||||
import org.briarproject.bramble.api.transport.StreamContext;
|
|
||||||
import org.briarproject.bramble.api.transport.StreamReaderFactory;
|
|
||||||
import org.briarproject.bramble.api.transport.StreamWriter;
|
|
||||||
import org.briarproject.bramble.api.transport.StreamWriterFactory;
|
|
||||||
|
|
||||||
import java.io.IOException;
|
|
||||||
|
|
||||||
import static java.util.logging.Level.WARNING;
|
|
||||||
import static org.briarproject.bramble.api.nullsafety.NullSafety.requireNonNull;
|
|
||||||
import static org.briarproject.bramble.util.LogUtils.logException;
|
|
||||||
|
|
||||||
@NotNullByDefault
|
|
||||||
class OutgoingSimplexSyncConnection extends SyncConnection implements Runnable {
|
|
||||||
|
|
||||||
private final ContactId contactId;
|
|
||||||
private final TransportId transportId;
|
|
||||||
private final TransportConnectionWriter writer;
|
|
||||||
|
|
||||||
OutgoingSimplexSyncConnection(KeyManager keyManager,
|
|
||||||
ConnectionRegistry connectionRegistry,
|
|
||||||
StreamReaderFactory streamReaderFactory,
|
|
||||||
StreamWriterFactory streamWriterFactory,
|
|
||||||
SyncSessionFactory syncSessionFactory,
|
|
||||||
TransportPropertyManager transportPropertyManager,
|
|
||||||
ContactId contactId, TransportId transportId,
|
|
||||||
TransportConnectionWriter writer) {
|
|
||||||
super(keyManager, connectionRegistry, streamReaderFactory,
|
|
||||||
streamWriterFactory, syncSessionFactory,
|
|
||||||
transportPropertyManager);
|
|
||||||
this.contactId = contactId;
|
|
||||||
this.transportId = transportId;
|
|
||||||
this.writer = writer;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void run() {
|
|
||||||
// Allocate a stream context
|
|
||||||
StreamContext ctx = allocateStreamContext(contactId, transportId);
|
|
||||||
if (ctx == null) {
|
|
||||||
LOG.warning("Could not allocate stream context");
|
|
||||||
onError();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
try {
|
|
||||||
// Create and run the outgoing session
|
|
||||||
createSimplexOutgoingSession(ctx, writer).run();
|
|
||||||
writer.dispose(false);
|
|
||||||
} catch (IOException e) {
|
|
||||||
logException(LOG, WARNING, e);
|
|
||||||
onError();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private void onError() {
|
|
||||||
disposeOnError(writer);
|
|
||||||
}
|
|
||||||
|
|
||||||
private SyncSession createSimplexOutgoingSession(StreamContext ctx,
|
|
||||||
TransportConnectionWriter w) throws IOException {
|
|
||||||
StreamWriter streamWriter = streamWriterFactory.createStreamWriter(
|
|
||||||
w.getOutputStream(), ctx);
|
|
||||||
ContactId c = requireNonNull(ctx.getContactId());
|
|
||||||
return syncSessionFactory.createSimplexOutgoingSession(c,
|
|
||||||
ctx.getTransportId(), w.getMaxLatency(), streamWriter);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@@ -1,64 +0,0 @@
|
|||||||
package org.briarproject.bramble.connection;
|
|
||||||
|
|
||||||
import org.briarproject.bramble.api.connection.ConnectionRegistry;
|
|
||||||
import org.briarproject.bramble.api.contact.ContactId;
|
|
||||||
import org.briarproject.bramble.api.db.DbException;
|
|
||||||
import org.briarproject.bramble.api.nullsafety.NotNullByDefault;
|
|
||||||
import org.briarproject.bramble.api.plugin.TransportConnectionReader;
|
|
||||||
import org.briarproject.bramble.api.plugin.TransportId;
|
|
||||||
import org.briarproject.bramble.api.properties.TransportPropertyManager;
|
|
||||||
import org.briarproject.bramble.api.sync.PriorityHandler;
|
|
||||||
import org.briarproject.bramble.api.sync.SyncSession;
|
|
||||||
import org.briarproject.bramble.api.sync.SyncSessionFactory;
|
|
||||||
import org.briarproject.bramble.api.transport.KeyManager;
|
|
||||||
import org.briarproject.bramble.api.transport.StreamContext;
|
|
||||||
import org.briarproject.bramble.api.transport.StreamReaderFactory;
|
|
||||||
import org.briarproject.bramble.api.transport.StreamWriterFactory;
|
|
||||||
|
|
||||||
import java.io.IOException;
|
|
||||||
import java.io.InputStream;
|
|
||||||
|
|
||||||
import javax.annotation.Nullable;
|
|
||||||
|
|
||||||
import static java.util.logging.Level.WARNING;
|
|
||||||
import static org.briarproject.bramble.api.nullsafety.NullSafety.requireNonNull;
|
|
||||||
import static org.briarproject.bramble.util.LogUtils.logException;
|
|
||||||
|
|
||||||
@NotNullByDefault
|
|
||||||
class SyncConnection extends Connection {
|
|
||||||
|
|
||||||
final SyncSessionFactory syncSessionFactory;
|
|
||||||
final TransportPropertyManager transportPropertyManager;
|
|
||||||
|
|
||||||
SyncConnection(KeyManager keyManager, ConnectionRegistry connectionRegistry,
|
|
||||||
StreamReaderFactory streamReaderFactory,
|
|
||||||
StreamWriterFactory streamWriterFactory,
|
|
||||||
SyncSessionFactory syncSessionFactory,
|
|
||||||
TransportPropertyManager transportPropertyManager) {
|
|
||||||
super(keyManager, connectionRegistry, streamReaderFactory,
|
|
||||||
streamWriterFactory);
|
|
||||||
this.syncSessionFactory = syncSessionFactory;
|
|
||||||
this.transportPropertyManager = transportPropertyManager;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Nullable
|
|
||||||
StreamContext allocateStreamContext(ContactId contactId,
|
|
||||||
TransportId transportId) {
|
|
||||||
try {
|
|
||||||
return keyManager.getStreamContext(contactId, transportId);
|
|
||||||
} catch (DbException e) {
|
|
||||||
logException(LOG, WARNING, e);
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
SyncSession createIncomingSession(StreamContext ctx,
|
|
||||||
TransportConnectionReader r, PriorityHandler handler)
|
|
||||||
throws IOException {
|
|
||||||
InputStream streamReader = streamReaderFactory.createStreamReader(
|
|
||||||
r.getInputStream(), ctx);
|
|
||||||
ContactId c = requireNonNull(ctx.getContactId());
|
|
||||||
return syncSessionFactory
|
|
||||||
.createIncomingSession(c, streamReader, handler);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -7,7 +7,6 @@ import net.i2p.crypto.eddsa.KeyPairGenerator;
|
|||||||
import org.briarproject.bramble.api.crypto.AgreementPrivateKey;
|
import org.briarproject.bramble.api.crypto.AgreementPrivateKey;
|
||||||
import org.briarproject.bramble.api.crypto.AgreementPublicKey;
|
import org.briarproject.bramble.api.crypto.AgreementPublicKey;
|
||||||
import org.briarproject.bramble.api.crypto.CryptoComponent;
|
import org.briarproject.bramble.api.crypto.CryptoComponent;
|
||||||
import org.briarproject.bramble.api.crypto.DecryptionException;
|
|
||||||
import org.briarproject.bramble.api.crypto.KeyPair;
|
import org.briarproject.bramble.api.crypto.KeyPair;
|
||||||
import org.briarproject.bramble.api.crypto.KeyParser;
|
import org.briarproject.bramble.api.crypto.KeyParser;
|
||||||
import org.briarproject.bramble.api.crypto.KeyStrengthener;
|
import org.briarproject.bramble.api.crypto.KeyStrengthener;
|
||||||
@@ -40,9 +39,6 @@ import static java.lang.System.arraycopy;
|
|||||||
import static java.util.logging.Level.INFO;
|
import static java.util.logging.Level.INFO;
|
||||||
import static org.briarproject.bramble.api.crypto.CryptoConstants.KEY_TYPE_AGREEMENT;
|
import static org.briarproject.bramble.api.crypto.CryptoConstants.KEY_TYPE_AGREEMENT;
|
||||||
import static org.briarproject.bramble.api.crypto.CryptoConstants.KEY_TYPE_SIGNATURE;
|
import static org.briarproject.bramble.api.crypto.CryptoConstants.KEY_TYPE_SIGNATURE;
|
||||||
import static org.briarproject.bramble.api.crypto.DecryptionResult.INVALID_CIPHERTEXT;
|
|
||||||
import static org.briarproject.bramble.api.crypto.DecryptionResult.INVALID_PASSWORD;
|
|
||||||
import static org.briarproject.bramble.api.crypto.DecryptionResult.KEY_STRENGTHENER_ERROR;
|
|
||||||
import static org.briarproject.bramble.util.ByteUtils.INT_32_BYTES;
|
import static org.briarproject.bramble.util.ByteUtils.INT_32_BYTES;
|
||||||
import static org.briarproject.bramble.util.LogUtils.logDuration;
|
import static org.briarproject.bramble.util.LogUtils.logDuration;
|
||||||
import static org.briarproject.bramble.util.LogUtils.now;
|
import static org.briarproject.bramble.util.LogUtils.now;
|
||||||
@@ -363,17 +359,16 @@ class CryptoComponentImpl implements CryptoComponent {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@Nullable
|
||||||
public byte[] decryptWithPassword(byte[] input, String password,
|
public byte[] decryptWithPassword(byte[] input, String password,
|
||||||
@Nullable KeyStrengthener keyStrengthener)
|
@Nullable KeyStrengthener keyStrengthener) {
|
||||||
throws DecryptionException {
|
|
||||||
AuthenticatedCipher cipher = new XSalsa20Poly1305AuthenticatedCipher();
|
AuthenticatedCipher cipher = new XSalsa20Poly1305AuthenticatedCipher();
|
||||||
int macBytes = cipher.getMacBytes();
|
int macBytes = cipher.getMacBytes();
|
||||||
// The input contains the format version, salt, cost parameter, IV,
|
// The input contains the format version, salt, cost parameter, IV,
|
||||||
// ciphertext and MAC
|
// ciphertext and MAC
|
||||||
if (input.length < 1 + PBKDF_SALT_BYTES + INT_32_BYTES
|
if (input.length < 1 + PBKDF_SALT_BYTES + INT_32_BYTES
|
||||||
+ STORAGE_IV_BYTES + macBytes) {
|
+ STORAGE_IV_BYTES + macBytes)
|
||||||
throw new DecryptionException(INVALID_CIPHERTEXT);
|
return null; // Invalid input
|
||||||
}
|
|
||||||
int inputOff = 0;
|
int inputOff = 0;
|
||||||
// Format version
|
// Format version
|
||||||
byte formatVersion = input[inputOff];
|
byte formatVersion = input[inputOff];
|
||||||
@@ -381,7 +376,7 @@ class CryptoComponentImpl implements CryptoComponent {
|
|||||||
// Check whether we support this format version
|
// Check whether we support this format version
|
||||||
if (formatVersion != PBKDF_FORMAT_SCRYPT &&
|
if (formatVersion != PBKDF_FORMAT_SCRYPT &&
|
||||||
formatVersion != PBKDF_FORMAT_SCRYPT_STRENGTHENED) {
|
formatVersion != PBKDF_FORMAT_SCRYPT_STRENGTHENED) {
|
||||||
throw new DecryptionException(INVALID_CIPHERTEXT);
|
return null;
|
||||||
}
|
}
|
||||||
// Salt
|
// Salt
|
||||||
byte[] salt = new byte[PBKDF_SALT_BYTES];
|
byte[] salt = new byte[PBKDF_SALT_BYTES];
|
||||||
@@ -390,9 +385,8 @@ class CryptoComponentImpl implements CryptoComponent {
|
|||||||
// Cost parameter
|
// Cost parameter
|
||||||
long cost = ByteUtils.readUint32(input, inputOff);
|
long cost = ByteUtils.readUint32(input, inputOff);
|
||||||
inputOff += INT_32_BYTES;
|
inputOff += INT_32_BYTES;
|
||||||
if (cost < 2 || cost > Integer.MAX_VALUE) {
|
if (cost < 2 || cost > Integer.MAX_VALUE)
|
||||||
throw new DecryptionException(INVALID_CIPHERTEXT);
|
return null; // Invalid cost parameter
|
||||||
}
|
|
||||||
// IV
|
// IV
|
||||||
byte[] iv = new byte[STORAGE_IV_BYTES];
|
byte[] iv = new byte[STORAGE_IV_BYTES];
|
||||||
arraycopy(input, inputOff, iv, 0, iv.length);
|
arraycopy(input, inputOff, iv, 0, iv.length);
|
||||||
@@ -400,10 +394,8 @@ class CryptoComponentImpl implements CryptoComponent {
|
|||||||
// Derive the decryption key from the password
|
// Derive the decryption key from the password
|
||||||
SecretKey key = passwordBasedKdf.deriveKey(password, salt, (int) cost);
|
SecretKey key = passwordBasedKdf.deriveKey(password, salt, (int) cost);
|
||||||
if (formatVersion == PBKDF_FORMAT_SCRYPT_STRENGTHENED) {
|
if (formatVersion == PBKDF_FORMAT_SCRYPT_STRENGTHENED) {
|
||||||
if (keyStrengthener == null || !keyStrengthener.isInitialised()) {
|
if (keyStrengthener == null || !keyStrengthener.isInitialised())
|
||||||
// Can't derive the same strengthened key
|
return null; // Can't derive the same strengthened key
|
||||||
throw new DecryptionException(KEY_STRENGTHENER_ERROR);
|
|
||||||
}
|
|
||||||
key = keyStrengthener.strengthenKey(key);
|
key = keyStrengthener.strengthenKey(key);
|
||||||
}
|
}
|
||||||
// Initialise the cipher
|
// Initialise the cipher
|
||||||
@@ -419,7 +411,7 @@ class CryptoComponentImpl implements CryptoComponent {
|
|||||||
cipher.process(input, inputOff, inputLen, output, 0);
|
cipher.process(input, inputOff, inputLen, output, 0);
|
||||||
return output;
|
return output;
|
||||||
} catch (GeneralSecurityException e) {
|
} catch (GeneralSecurityException e) {
|
||||||
throw new DecryptionException(INVALID_PASSWORD);
|
return null; // Invalid ciphertext
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -25,7 +25,6 @@ import static java.util.logging.Level.INFO;
|
|||||||
import static java.util.logging.Level.WARNING;
|
import static java.util.logging.Level.WARNING;
|
||||||
import static java.util.logging.Logger.getLogger;
|
import static java.util.logging.Logger.getLogger;
|
||||||
import static org.briarproject.bramble.db.JdbcUtils.tryToClose;
|
import static org.briarproject.bramble.db.JdbcUtils.tryToClose;
|
||||||
import static org.briarproject.bramble.util.IoUtils.isNonEmptyDirectory;
|
|
||||||
import static org.briarproject.bramble.util.LogUtils.logFileOrDir;
|
import static org.briarproject.bramble.util.LogUtils.logFileOrDir;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -70,9 +69,8 @@ class H2Database extends JdbcDatabase {
|
|||||||
LOG.info("Contents of account directory before opening DB:");
|
LOG.info("Contents of account directory before opening DB:");
|
||||||
logFileOrDir(LOG, INFO, dir.getParentFile());
|
logFileOrDir(LOG, INFO, dir.getParentFile());
|
||||||
}
|
}
|
||||||
boolean reopen = isNonEmptyDirectory(dir);
|
boolean reopen = !dir.mkdirs();
|
||||||
if (LOG.isLoggable(INFO)) LOG.info("Reopening DB: " + reopen);
|
if (LOG.isLoggable(INFO)) LOG.info("Reopening DB: " + reopen);
|
||||||
if (!reopen && dir.mkdirs()) LOG.info("Created database directory");
|
|
||||||
super.open("org.h2.Driver", reopen, key, listener);
|
super.open("org.h2.Driver", reopen, key, listener);
|
||||||
if (LOG.isLoggable(INFO)) {
|
if (LOG.isLoggable(INFO)) {
|
||||||
LOG.info("Contents of account directory after opening DB:");
|
LOG.info("Contents of account directory after opening DB:");
|
||||||
|
|||||||
@@ -20,11 +20,9 @@ import java.util.logging.Logger;
|
|||||||
import javax.annotation.Nullable;
|
import javax.annotation.Nullable;
|
||||||
import javax.inject.Inject;
|
import javax.inject.Inject;
|
||||||
|
|
||||||
import static java.util.logging.Level.INFO;
|
|
||||||
import static java.util.logging.Level.WARNING;
|
import static java.util.logging.Level.WARNING;
|
||||||
import static java.util.logging.Logger.getLogger;
|
import static java.util.logging.Logger.getLogger;
|
||||||
import static org.briarproject.bramble.db.JdbcUtils.tryToClose;
|
import static org.briarproject.bramble.db.JdbcUtils.tryToClose;
|
||||||
import static org.briarproject.bramble.util.IoUtils.isNonEmptyDirectory;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Contains all the HSQLDB-specific code for the database.
|
* Contains all the HSQLDB-specific code for the database.
|
||||||
@@ -66,10 +64,7 @@ class HyperSqlDatabase extends JdbcDatabase {
|
|||||||
public boolean open(SecretKey key, @Nullable MigrationListener listener)
|
public boolean open(SecretKey key, @Nullable MigrationListener listener)
|
||||||
throws DbException {
|
throws DbException {
|
||||||
this.key = key;
|
this.key = key;
|
||||||
File dir = config.getDatabaseDirectory();
|
boolean reopen = !config.getDatabaseDirectory().mkdirs();
|
||||||
boolean reopen = isNonEmptyDirectory(dir);
|
|
||||||
if (LOG.isLoggable(INFO)) LOG.info("Reopening DB: " + reopen);
|
|
||||||
if (!reopen && dir.mkdirs()) LOG.info("Created database directory");
|
|
||||||
super.open("org.hsqldb.jdbc.JDBCDriver", reopen, key, listener);
|
super.open("org.hsqldb.jdbc.JDBCDriver", reopen, key, listener);
|
||||||
return reopen;
|
return reopen;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,18 +0,0 @@
|
|||||||
package org.briarproject.bramble.io;
|
|
||||||
|
|
||||||
import org.briarproject.bramble.api.io.TimeoutMonitor;
|
|
||||||
|
|
||||||
import javax.inject.Singleton;
|
|
||||||
|
|
||||||
import dagger.Module;
|
|
||||||
import dagger.Provides;
|
|
||||||
|
|
||||||
@Module
|
|
||||||
public class IoModule {
|
|
||||||
|
|
||||||
@Provides
|
|
||||||
@Singleton
|
|
||||||
TimeoutMonitor provideTimeoutMonitor(TimeoutMonitorImpl timeoutMonitor) {
|
|
||||||
return timeoutMonitor;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,104 +0,0 @@
|
|||||||
package org.briarproject.bramble.io;
|
|
||||||
|
|
||||||
import org.briarproject.bramble.api.nullsafety.NotNullByDefault;
|
|
||||||
import org.briarproject.bramble.api.system.Clock;
|
|
||||||
|
|
||||||
import java.io.IOException;
|
|
||||||
import java.io.InputStream;
|
|
||||||
|
|
||||||
import javax.annotation.concurrent.GuardedBy;
|
|
||||||
|
|
||||||
@NotNullByDefault
|
|
||||||
class TimeoutInputStream extends InputStream {
|
|
||||||
|
|
||||||
private final Clock clock;
|
|
||||||
private final InputStream in;
|
|
||||||
private final long timeoutMs;
|
|
||||||
private final CloseListener listener;
|
|
||||||
private final Object lock = new Object();
|
|
||||||
@GuardedBy("lock")
|
|
||||||
private long readStartedMs = -1;
|
|
||||||
|
|
||||||
TimeoutInputStream(Clock clock, InputStream in, long timeoutMs,
|
|
||||||
CloseListener listener) {
|
|
||||||
this.clock = clock;
|
|
||||||
this.in = in;
|
|
||||||
this.timeoutMs = timeoutMs;
|
|
||||||
this.listener = listener;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public int read() throws IOException {
|
|
||||||
synchronized (lock) {
|
|
||||||
readStartedMs = clock.currentTimeMillis();
|
|
||||||
}
|
|
||||||
int input = in.read();
|
|
||||||
synchronized (lock) {
|
|
||||||
readStartedMs = -1;
|
|
||||||
}
|
|
||||||
return input;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public int read(byte[] b) throws IOException {
|
|
||||||
return read(b, 0, b.length);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public int read(byte[] b, int off, int len) throws IOException {
|
|
||||||
synchronized (lock) {
|
|
||||||
readStartedMs = clock.currentTimeMillis();
|
|
||||||
}
|
|
||||||
int read = in.read(b, off, len);
|
|
||||||
synchronized (lock) {
|
|
||||||
readStartedMs = -1;
|
|
||||||
}
|
|
||||||
return read;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void close() throws IOException {
|
|
||||||
try {
|
|
||||||
in.close();
|
|
||||||
} finally {
|
|
||||||
listener.onClose(this);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public int available() throws IOException {
|
|
||||||
return in.available();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void mark(int readlimit) {
|
|
||||||
in.mark(readlimit);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public boolean markSupported() {
|
|
||||||
return in.markSupported();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void reset() throws IOException {
|
|
||||||
in.reset();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public long skip(long n) throws IOException {
|
|
||||||
return in.skip(n);
|
|
||||||
}
|
|
||||||
|
|
||||||
boolean hasTimedOut() {
|
|
||||||
synchronized (lock) {
|
|
||||||
return readStartedMs != -1 &&
|
|
||||||
clock.currentTimeMillis() - readStartedMs > timeoutMs;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
interface CloseListener {
|
|
||||||
|
|
||||||
void onClose(TimeoutInputStream closed);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,96 +0,0 @@
|
|||||||
package org.briarproject.bramble.io;
|
|
||||||
|
|
||||||
import org.briarproject.bramble.api.io.TimeoutMonitor;
|
|
||||||
import org.briarproject.bramble.api.lifecycle.IoExecutor;
|
|
||||||
import org.briarproject.bramble.api.system.Clock;
|
|
||||||
import org.briarproject.bramble.api.system.Scheduler;
|
|
||||||
|
|
||||||
import java.io.IOException;
|
|
||||||
import java.io.InputStream;
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.List;
|
|
||||||
import java.util.concurrent.Executor;
|
|
||||||
import java.util.concurrent.Future;
|
|
||||||
import java.util.concurrent.ScheduledExecutorService;
|
|
||||||
import java.util.logging.Logger;
|
|
||||||
|
|
||||||
import javax.annotation.concurrent.GuardedBy;
|
|
||||||
import javax.inject.Inject;
|
|
||||||
|
|
||||||
import static java.util.concurrent.TimeUnit.MILLISECONDS;
|
|
||||||
import static java.util.concurrent.TimeUnit.SECONDS;
|
|
||||||
import static java.util.logging.Level.INFO;
|
|
||||||
import static java.util.logging.Logger.getLogger;
|
|
||||||
import static org.briarproject.bramble.util.LogUtils.logException;
|
|
||||||
|
|
||||||
class TimeoutMonitorImpl implements TimeoutMonitor {
|
|
||||||
|
|
||||||
private static final Logger LOG =
|
|
||||||
getLogger(TimeoutMonitorImpl.class.getName());
|
|
||||||
|
|
||||||
private static final long CHECK_INTERVAL_MS = SECONDS.toMillis(10);
|
|
||||||
|
|
||||||
private final ScheduledExecutorService scheduler;
|
|
||||||
private final Executor ioExecutor;
|
|
||||||
private final Clock clock;
|
|
||||||
private final Object lock = new Object();
|
|
||||||
@GuardedBy("lock")
|
|
||||||
private final List<TimeoutInputStream> streams = new ArrayList<>();
|
|
||||||
|
|
||||||
@GuardedBy("lock")
|
|
||||||
private Future<?> task = null;
|
|
||||||
|
|
||||||
@Inject
|
|
||||||
TimeoutMonitorImpl(@Scheduler ScheduledExecutorService scheduler,
|
|
||||||
@IoExecutor Executor ioExecutor, Clock clock) {
|
|
||||||
this.scheduler = scheduler;
|
|
||||||
this.ioExecutor = ioExecutor;
|
|
||||||
this.clock = clock;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public InputStream createTimeoutInputStream(InputStream in,
|
|
||||||
long timeoutMs) {
|
|
||||||
TimeoutInputStream stream = new TimeoutInputStream(clock, in,
|
|
||||||
timeoutMs, this::removeStream);
|
|
||||||
synchronized (lock) {
|
|
||||||
if (streams.isEmpty()) {
|
|
||||||
task = scheduler.scheduleWithFixedDelay(this::checkTimeouts,
|
|
||||||
CHECK_INTERVAL_MS, CHECK_INTERVAL_MS, MILLISECONDS);
|
|
||||||
}
|
|
||||||
streams.add(stream);
|
|
||||||
}
|
|
||||||
return stream;
|
|
||||||
}
|
|
||||||
|
|
||||||
private void removeStream(TimeoutInputStream stream) {
|
|
||||||
Future<?> toCancel = null;
|
|
||||||
synchronized (lock) {
|
|
||||||
if (streams.remove(stream) && streams.isEmpty()) {
|
|
||||||
toCancel = task;
|
|
||||||
task = null;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (toCancel != null) toCancel.cancel(false);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Scheduler
|
|
||||||
private void checkTimeouts() {
|
|
||||||
ioExecutor.execute(() -> {
|
|
||||||
List<TimeoutInputStream> snapshot;
|
|
||||||
synchronized (lock) {
|
|
||||||
snapshot = new ArrayList<>(streams);
|
|
||||||
}
|
|
||||||
for (TimeoutInputStream stream : snapshot) {
|
|
||||||
if (stream.hasTimedOut()) {
|
|
||||||
LOG.info("Input stream has timed out");
|
|
||||||
try {
|
|
||||||
stream.close();
|
|
||||||
} catch (IOException e) {
|
|
||||||
logException(LOG, INFO, e);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -0,0 +1,694 @@
|
|||||||
|
package org.briarproject.bramble.plugin;
|
||||||
|
|
||||||
|
import org.briarproject.bramble.api.contact.Contact;
|
||||||
|
import org.briarproject.bramble.api.contact.ContactExchangeManager;
|
||||||
|
import org.briarproject.bramble.api.contact.ContactId;
|
||||||
|
import org.briarproject.bramble.api.contact.HandshakeManager;
|
||||||
|
import org.briarproject.bramble.api.contact.HandshakeManager.HandshakeResult;
|
||||||
|
import org.briarproject.bramble.api.contact.PendingContactId;
|
||||||
|
import org.briarproject.bramble.api.db.DbException;
|
||||||
|
import org.briarproject.bramble.api.lifecycle.IoExecutor;
|
||||||
|
import org.briarproject.bramble.api.nullsafety.NotNullByDefault;
|
||||||
|
import org.briarproject.bramble.api.plugin.ConnectionManager;
|
||||||
|
import org.briarproject.bramble.api.plugin.ConnectionRegistry;
|
||||||
|
import org.briarproject.bramble.api.plugin.TransportConnectionReader;
|
||||||
|
import org.briarproject.bramble.api.plugin.TransportConnectionWriter;
|
||||||
|
import org.briarproject.bramble.api.plugin.TransportId;
|
||||||
|
import org.briarproject.bramble.api.plugin.duplex.DuplexTransportConnection;
|
||||||
|
import org.briarproject.bramble.api.sync.SyncSession;
|
||||||
|
import org.briarproject.bramble.api.sync.SyncSessionFactory;
|
||||||
|
import org.briarproject.bramble.api.transport.KeyManager;
|
||||||
|
import org.briarproject.bramble.api.transport.StreamContext;
|
||||||
|
import org.briarproject.bramble.api.transport.StreamReaderFactory;
|
||||||
|
import org.briarproject.bramble.api.transport.StreamWriter;
|
||||||
|
import org.briarproject.bramble.api.transport.StreamWriterFactory;
|
||||||
|
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.io.InputStream;
|
||||||
|
import java.util.concurrent.Executor;
|
||||||
|
import java.util.logging.Logger;
|
||||||
|
|
||||||
|
import javax.annotation.Nullable;
|
||||||
|
import javax.inject.Inject;
|
||||||
|
|
||||||
|
import static java.util.logging.Level.WARNING;
|
||||||
|
import static java.util.logging.Logger.getLogger;
|
||||||
|
import static org.briarproject.bramble.api.nullsafety.NullSafety.requireNonNull;
|
||||||
|
import static org.briarproject.bramble.api.transport.TransportConstants.TAG_LENGTH;
|
||||||
|
import static org.briarproject.bramble.util.IoUtils.read;
|
||||||
|
import static org.briarproject.bramble.util.LogUtils.logException;
|
||||||
|
|
||||||
|
@NotNullByDefault
|
||||||
|
class ConnectionManagerImpl implements ConnectionManager {
|
||||||
|
|
||||||
|
private static final Logger LOG =
|
||||||
|
getLogger(ConnectionManagerImpl.class.getName());
|
||||||
|
|
||||||
|
private final Executor ioExecutor;
|
||||||
|
private final KeyManager keyManager;
|
||||||
|
private final StreamReaderFactory streamReaderFactory;
|
||||||
|
private final StreamWriterFactory streamWriterFactory;
|
||||||
|
private final SyncSessionFactory syncSessionFactory;
|
||||||
|
private final HandshakeManager handshakeManager;
|
||||||
|
private final ContactExchangeManager contactExchangeManager;
|
||||||
|
private final ConnectionRegistry connectionRegistry;
|
||||||
|
|
||||||
|
@Inject
|
||||||
|
ConnectionManagerImpl(@IoExecutor Executor ioExecutor,
|
||||||
|
KeyManager keyManager, StreamReaderFactory streamReaderFactory,
|
||||||
|
StreamWriterFactory streamWriterFactory,
|
||||||
|
SyncSessionFactory syncSessionFactory,
|
||||||
|
HandshakeManager handshakeManager,
|
||||||
|
ContactExchangeManager contactExchangeManager,
|
||||||
|
ConnectionRegistry connectionRegistry) {
|
||||||
|
this.ioExecutor = ioExecutor;
|
||||||
|
this.keyManager = keyManager;
|
||||||
|
this.streamReaderFactory = streamReaderFactory;
|
||||||
|
this.streamWriterFactory = streamWriterFactory;
|
||||||
|
this.syncSessionFactory = syncSessionFactory;
|
||||||
|
this.handshakeManager = handshakeManager;
|
||||||
|
this.contactExchangeManager = contactExchangeManager;
|
||||||
|
this.connectionRegistry = connectionRegistry;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void manageIncomingConnection(TransportId t,
|
||||||
|
TransportConnectionReader r) {
|
||||||
|
ioExecutor.execute(new ManageIncomingSimplexConnection(t, r));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void manageIncomingConnection(TransportId t,
|
||||||
|
DuplexTransportConnection d) {
|
||||||
|
ioExecutor.execute(new ManageIncomingDuplexConnection(t, d));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void manageIncomingConnection(PendingContactId p, TransportId t,
|
||||||
|
DuplexTransportConnection d) {
|
||||||
|
ioExecutor.execute(new ManageIncomingHandshakeConnection(p, t, d));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void manageOutgoingConnection(ContactId c, TransportId t,
|
||||||
|
TransportConnectionWriter w) {
|
||||||
|
ioExecutor.execute(new ManageOutgoingSimplexConnection(c, t, w));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void manageOutgoingConnection(ContactId c, TransportId t,
|
||||||
|
DuplexTransportConnection d) {
|
||||||
|
ioExecutor.execute(new ManageOutgoingDuplexConnection(c, t, d));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void manageOutgoingConnection(PendingContactId p, TransportId t,
|
||||||
|
DuplexTransportConnection d) {
|
||||||
|
ioExecutor.execute(new ManageOutgoingHandshakeConnection(p, t, d));
|
||||||
|
}
|
||||||
|
|
||||||
|
private byte[] readTag(InputStream in) throws IOException {
|
||||||
|
byte[] tag = new byte[TAG_LENGTH];
|
||||||
|
read(in, tag);
|
||||||
|
return tag;
|
||||||
|
}
|
||||||
|
|
||||||
|
private SyncSession createIncomingSession(StreamContext ctx,
|
||||||
|
TransportConnectionReader r) throws IOException {
|
||||||
|
InputStream streamReader = streamReaderFactory.createStreamReader(
|
||||||
|
r.getInputStream(), ctx);
|
||||||
|
ContactId c = requireNonNull(ctx.getContactId());
|
||||||
|
return syncSessionFactory.createIncomingSession(c, streamReader);
|
||||||
|
}
|
||||||
|
|
||||||
|
private SyncSession createSimplexOutgoingSession(StreamContext ctx,
|
||||||
|
TransportConnectionWriter w) throws IOException {
|
||||||
|
StreamWriter streamWriter = streamWriterFactory.createStreamWriter(
|
||||||
|
w.getOutputStream(), ctx);
|
||||||
|
ContactId c = requireNonNull(ctx.getContactId());
|
||||||
|
return syncSessionFactory.createSimplexOutgoingSession(c,
|
||||||
|
w.getMaxLatency(), streamWriter);
|
||||||
|
}
|
||||||
|
|
||||||
|
private SyncSession createDuplexOutgoingSession(StreamContext ctx,
|
||||||
|
TransportConnectionWriter w) throws IOException {
|
||||||
|
StreamWriter streamWriter = streamWriterFactory.createStreamWriter(
|
||||||
|
w.getOutputStream(), ctx);
|
||||||
|
ContactId c = requireNonNull(ctx.getContactId());
|
||||||
|
return syncSessionFactory.createDuplexOutgoingSession(c,
|
||||||
|
w.getMaxLatency(), w.getMaxIdleTime(), streamWriter);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void disposeOnError(TransportConnectionReader reader,
|
||||||
|
boolean recognised) {
|
||||||
|
try {
|
||||||
|
reader.dispose(true, recognised);
|
||||||
|
} catch (IOException e) {
|
||||||
|
logException(LOG, WARNING, e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void disposeOnError(TransportConnectionWriter writer) {
|
||||||
|
try {
|
||||||
|
writer.dispose(true);
|
||||||
|
} catch (IOException e) {
|
||||||
|
logException(LOG, WARNING, e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private class ManageIncomingSimplexConnection implements Runnable {
|
||||||
|
|
||||||
|
private final TransportId transportId;
|
||||||
|
private final TransportConnectionReader reader;
|
||||||
|
|
||||||
|
private ManageIncomingSimplexConnection(TransportId transportId,
|
||||||
|
TransportConnectionReader reader) {
|
||||||
|
this.transportId = transportId;
|
||||||
|
this.reader = reader;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void run() {
|
||||||
|
// Read and recognise the tag
|
||||||
|
StreamContext ctx;
|
||||||
|
try {
|
||||||
|
byte[] tag = readTag(reader.getInputStream());
|
||||||
|
ctx = keyManager.getStreamContext(transportId, tag);
|
||||||
|
} catch (IOException | DbException e) {
|
||||||
|
logException(LOG, WARNING, e);
|
||||||
|
onError(false);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (ctx == null) {
|
||||||
|
LOG.info("Unrecognised tag");
|
||||||
|
onError(false);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
ContactId contactId = ctx.getContactId();
|
||||||
|
if (contactId == null) {
|
||||||
|
LOG.warning("Received rendezvous stream, expected contact");
|
||||||
|
onError(true);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (ctx.isHandshakeMode()) {
|
||||||
|
// TODO: Support handshake mode for contacts
|
||||||
|
LOG.warning("Received handshake tag, expected rotation mode");
|
||||||
|
onError(true);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
connectionRegistry.registerConnection(contactId, transportId, true);
|
||||||
|
try {
|
||||||
|
// Create and run the incoming session
|
||||||
|
createIncomingSession(ctx, reader).run();
|
||||||
|
reader.dispose(false, true);
|
||||||
|
} catch (IOException e) {
|
||||||
|
logException(LOG, WARNING, e);
|
||||||
|
onError(true);
|
||||||
|
} finally {
|
||||||
|
connectionRegistry.unregisterConnection(contactId, transportId,
|
||||||
|
true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void onError(boolean recognised) {
|
||||||
|
disposeOnError(reader, recognised);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private class ManageOutgoingSimplexConnection implements Runnable {
|
||||||
|
|
||||||
|
private final ContactId contactId;
|
||||||
|
private final TransportId transportId;
|
||||||
|
private final TransportConnectionWriter writer;
|
||||||
|
|
||||||
|
private ManageOutgoingSimplexConnection(ContactId contactId,
|
||||||
|
TransportId transportId, TransportConnectionWriter writer) {
|
||||||
|
this.contactId = contactId;
|
||||||
|
this.transportId = transportId;
|
||||||
|
this.writer = writer;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void run() {
|
||||||
|
// Allocate a stream context
|
||||||
|
StreamContext ctx;
|
||||||
|
try {
|
||||||
|
ctx = keyManager.getStreamContext(contactId, transportId);
|
||||||
|
} catch (DbException e) {
|
||||||
|
logException(LOG, WARNING, e);
|
||||||
|
onError();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (ctx == null) {
|
||||||
|
LOG.warning("Could not allocate stream context");
|
||||||
|
onError();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
connectionRegistry.registerConnection(contactId, transportId,
|
||||||
|
false);
|
||||||
|
try {
|
||||||
|
// Create and run the outgoing session
|
||||||
|
createSimplexOutgoingSession(ctx, writer).run();
|
||||||
|
writer.dispose(false);
|
||||||
|
} catch (IOException e) {
|
||||||
|
logException(LOG, WARNING, e);
|
||||||
|
onError();
|
||||||
|
} finally {
|
||||||
|
connectionRegistry.unregisterConnection(contactId, transportId,
|
||||||
|
false);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void onError() {
|
||||||
|
disposeOnError(writer);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private class ManageIncomingDuplexConnection implements Runnable {
|
||||||
|
|
||||||
|
private final TransportId transportId;
|
||||||
|
private final TransportConnectionReader reader;
|
||||||
|
private final TransportConnectionWriter writer;
|
||||||
|
|
||||||
|
@Nullable
|
||||||
|
private volatile SyncSession outgoingSession = null;
|
||||||
|
|
||||||
|
private ManageIncomingDuplexConnection(TransportId transportId,
|
||||||
|
DuplexTransportConnection connection) {
|
||||||
|
this.transportId = transportId;
|
||||||
|
reader = connection.getReader();
|
||||||
|
writer = connection.getWriter();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void run() {
|
||||||
|
// Read and recognise the tag
|
||||||
|
StreamContext ctx;
|
||||||
|
try {
|
||||||
|
byte[] tag = readTag(reader.getInputStream());
|
||||||
|
ctx = keyManager.getStreamContext(transportId, tag);
|
||||||
|
} catch (IOException | DbException e) {
|
||||||
|
logException(LOG, WARNING, e);
|
||||||
|
onReadError(false);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (ctx == null) {
|
||||||
|
LOG.info("Unrecognised tag");
|
||||||
|
onReadError(false);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
ContactId contactId = ctx.getContactId();
|
||||||
|
if (contactId == null) {
|
||||||
|
LOG.warning("Expected contact tag, got rendezvous tag");
|
||||||
|
onReadError(true);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (ctx.isHandshakeMode()) {
|
||||||
|
// TODO: Support handshake mode for contacts
|
||||||
|
LOG.warning("Received handshake tag, expected rotation mode");
|
||||||
|
onReadError(true);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
connectionRegistry.registerConnection(contactId, transportId, true);
|
||||||
|
// Start the outgoing session on another thread
|
||||||
|
ioExecutor.execute(() -> runOutgoingSession(contactId));
|
||||||
|
try {
|
||||||
|
// Create and run the incoming session
|
||||||
|
createIncomingSession(ctx, reader).run();
|
||||||
|
reader.dispose(false, true);
|
||||||
|
// Interrupt the outgoing session so it finishes cleanly
|
||||||
|
SyncSession out = outgoingSession;
|
||||||
|
if (out != null) out.interrupt();
|
||||||
|
} catch (IOException e) {
|
||||||
|
logException(LOG, WARNING, e);
|
||||||
|
onReadError(true);
|
||||||
|
} finally {
|
||||||
|
connectionRegistry.unregisterConnection(contactId, transportId,
|
||||||
|
true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void runOutgoingSession(ContactId contactId) {
|
||||||
|
// Allocate a stream context
|
||||||
|
StreamContext ctx;
|
||||||
|
try {
|
||||||
|
ctx = keyManager.getStreamContext(contactId, transportId);
|
||||||
|
} catch (DbException e) {
|
||||||
|
logException(LOG, WARNING, e);
|
||||||
|
onWriteError();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (ctx == null) {
|
||||||
|
LOG.warning("Could not allocate stream context");
|
||||||
|
onWriteError();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
try {
|
||||||
|
// Create and run the outgoing session
|
||||||
|
SyncSession out = createDuplexOutgoingSession(ctx, writer);
|
||||||
|
outgoingSession = out;
|
||||||
|
out.run();
|
||||||
|
writer.dispose(false);
|
||||||
|
} catch (IOException e) {
|
||||||
|
logException(LOG, WARNING, e);
|
||||||
|
onWriteError();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void onReadError(boolean recognised) {
|
||||||
|
disposeOnError(reader, recognised);
|
||||||
|
disposeOnError(writer);
|
||||||
|
// Interrupt the outgoing session so it finishes
|
||||||
|
SyncSession out = outgoingSession;
|
||||||
|
if (out != null) out.interrupt();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void onWriteError() {
|
||||||
|
disposeOnError(reader, true);
|
||||||
|
disposeOnError(writer);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private class ManageOutgoingDuplexConnection implements Runnable {
|
||||||
|
|
||||||
|
private final ContactId contactId;
|
||||||
|
private final TransportId transportId;
|
||||||
|
private final TransportConnectionReader reader;
|
||||||
|
private final TransportConnectionWriter writer;
|
||||||
|
|
||||||
|
@Nullable
|
||||||
|
private volatile SyncSession outgoingSession = null;
|
||||||
|
|
||||||
|
private ManageOutgoingDuplexConnection(ContactId contactId,
|
||||||
|
TransportId transportId, DuplexTransportConnection connection) {
|
||||||
|
this.contactId = contactId;
|
||||||
|
this.transportId = transportId;
|
||||||
|
reader = connection.getReader();
|
||||||
|
writer = connection.getWriter();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void run() {
|
||||||
|
// Allocate a stream context
|
||||||
|
StreamContext ctx;
|
||||||
|
try {
|
||||||
|
ctx = keyManager.getStreamContext(contactId, transportId);
|
||||||
|
} catch (DbException e) {
|
||||||
|
logException(LOG, WARNING, e);
|
||||||
|
onWriteError();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (ctx == null) {
|
||||||
|
LOG.warning("Could not allocate stream context");
|
||||||
|
onWriteError();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (ctx.isHandshakeMode()) {
|
||||||
|
// TODO: Support handshake mode for contacts
|
||||||
|
LOG.warning("Cannot use handshake mode stream context");
|
||||||
|
onWriteError();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
// Start the incoming session on another thread
|
||||||
|
ioExecutor.execute(this::runIncomingSession);
|
||||||
|
try {
|
||||||
|
// Create and run the outgoing session
|
||||||
|
SyncSession out = createDuplexOutgoingSession(ctx, writer);
|
||||||
|
outgoingSession = out;
|
||||||
|
out.run();
|
||||||
|
writer.dispose(false);
|
||||||
|
} catch (IOException e) {
|
||||||
|
logException(LOG, WARNING, e);
|
||||||
|
onWriteError();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void runIncomingSession() {
|
||||||
|
// Read and recognise the tag
|
||||||
|
StreamContext ctx;
|
||||||
|
try {
|
||||||
|
byte[] tag = readTag(reader.getInputStream());
|
||||||
|
ctx = keyManager.getStreamContext(transportId, tag);
|
||||||
|
} catch (IOException | DbException e) {
|
||||||
|
logException(LOG, WARNING, e);
|
||||||
|
onReadError();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
// Unrecognised tags are suspicious in this case
|
||||||
|
if (ctx == null) {
|
||||||
|
LOG.warning("Unrecognised tag for returning stream");
|
||||||
|
onReadError();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
// Check that the stream comes from the expected contact
|
||||||
|
ContactId inContactId = ctx.getContactId();
|
||||||
|
if (inContactId == null) {
|
||||||
|
LOG.warning("Expected contact tag, got rendezvous tag");
|
||||||
|
onReadError();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (!contactId.equals(inContactId)) {
|
||||||
|
LOG.warning("Wrong contact ID for returning stream");
|
||||||
|
onReadError();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (ctx.isHandshakeMode()) {
|
||||||
|
// TODO: Support handshake mode for contacts
|
||||||
|
LOG.warning("Received handshake tag, expected rotation mode");
|
||||||
|
onReadError();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
connectionRegistry.registerConnection(contactId, transportId,
|
||||||
|
false);
|
||||||
|
try {
|
||||||
|
// Create and run the incoming session
|
||||||
|
createIncomingSession(ctx, reader).run();
|
||||||
|
reader.dispose(false, true);
|
||||||
|
// Interrupt the outgoing session so it finishes cleanly
|
||||||
|
SyncSession out = outgoingSession;
|
||||||
|
if (out != null) out.interrupt();
|
||||||
|
} catch (IOException e) {
|
||||||
|
logException(LOG, WARNING, e);
|
||||||
|
onReadError();
|
||||||
|
} finally {
|
||||||
|
connectionRegistry.unregisterConnection(contactId, transportId,
|
||||||
|
false);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void onReadError() {
|
||||||
|
// 'Recognised' is always true for outgoing connections
|
||||||
|
disposeOnError(reader, true);
|
||||||
|
disposeOnError(writer);
|
||||||
|
// Interrupt the outgoing session so it finishes
|
||||||
|
SyncSession out = outgoingSession;
|
||||||
|
if (out != null) out.interrupt();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void onWriteError() {
|
||||||
|
disposeOnError(reader, true);
|
||||||
|
disposeOnError(writer);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private class ManageIncomingHandshakeConnection implements Runnable {
|
||||||
|
|
||||||
|
private final PendingContactId pendingContactId;
|
||||||
|
private final TransportId transportId;
|
||||||
|
private final DuplexTransportConnection connection;
|
||||||
|
private final TransportConnectionReader reader;
|
||||||
|
private final TransportConnectionWriter writer;
|
||||||
|
|
||||||
|
private ManageIncomingHandshakeConnection(
|
||||||
|
PendingContactId pendingContactId, TransportId transportId,
|
||||||
|
DuplexTransportConnection connection) {
|
||||||
|
this.pendingContactId = pendingContactId;
|
||||||
|
this.transportId = transportId;
|
||||||
|
this.connection = connection;
|
||||||
|
reader = connection.getReader();
|
||||||
|
writer = connection.getWriter();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void run() {
|
||||||
|
// Read and recognise the tag
|
||||||
|
StreamContext ctxIn;
|
||||||
|
try {
|
||||||
|
byte[] tag = readTag(reader.getInputStream());
|
||||||
|
ctxIn = keyManager.getStreamContext(transportId, tag);
|
||||||
|
} catch (IOException | DbException e) {
|
||||||
|
logException(LOG, WARNING, e);
|
||||||
|
onError(false);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (ctxIn == null) {
|
||||||
|
LOG.info("Unrecognised tag");
|
||||||
|
onError(false);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
PendingContactId inPendingContactId = ctxIn.getPendingContactId();
|
||||||
|
if (inPendingContactId == null) {
|
||||||
|
LOG.warning("Expected rendezvous tag, got contact tag");
|
||||||
|
onError(true);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
// Allocate the outgoing stream context
|
||||||
|
StreamContext ctxOut;
|
||||||
|
try {
|
||||||
|
ctxOut = keyManager.getStreamContext(pendingContactId,
|
||||||
|
transportId);
|
||||||
|
} catch (DbException e) {
|
||||||
|
logException(LOG, WARNING, e);
|
||||||
|
onError(true);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (ctxOut == null) {
|
||||||
|
LOG.warning("Could not allocate stream context");
|
||||||
|
onError(true);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
// Close the connection if it's redundant
|
||||||
|
if (!connectionRegistry.registerConnection(pendingContactId)) {
|
||||||
|
LOG.info("Redundant rendezvous connection");
|
||||||
|
onError(true);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
// Handshake and exchange contacts
|
||||||
|
try {
|
||||||
|
InputStream in = streamReaderFactory.createStreamReader(
|
||||||
|
reader.getInputStream(), ctxIn);
|
||||||
|
// Flush the output stream to send the outgoing stream header
|
||||||
|
StreamWriter out = streamWriterFactory.createStreamWriter(
|
||||||
|
writer.getOutputStream(), ctxOut);
|
||||||
|
out.getOutputStream().flush();
|
||||||
|
HandshakeResult result = handshakeManager.handshake(
|
||||||
|
pendingContactId, in, out);
|
||||||
|
Contact contact = contactExchangeManager.exchangeContacts(
|
||||||
|
pendingContactId, connection, result.getMasterKey(),
|
||||||
|
result.isAlice(), false);
|
||||||
|
connectionRegistry.unregisterConnection(pendingContactId, true);
|
||||||
|
// Reuse the connection as a transport connection
|
||||||
|
manageOutgoingConnection(contact.getId(), transportId,
|
||||||
|
connection);
|
||||||
|
} catch (IOException | DbException e) {
|
||||||
|
logException(LOG, WARNING, e);
|
||||||
|
onError(true);
|
||||||
|
connectionRegistry.unregisterConnection(pendingContactId,
|
||||||
|
false);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void onError(boolean recognised) {
|
||||||
|
disposeOnError(reader, recognised);
|
||||||
|
disposeOnError(writer);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private class ManageOutgoingHandshakeConnection implements Runnable {
|
||||||
|
|
||||||
|
private final PendingContactId pendingContactId;
|
||||||
|
private final TransportId transportId;
|
||||||
|
private final DuplexTransportConnection connection;
|
||||||
|
private final TransportConnectionReader reader;
|
||||||
|
private final TransportConnectionWriter writer;
|
||||||
|
|
||||||
|
private ManageOutgoingHandshakeConnection(
|
||||||
|
PendingContactId pendingContactId, TransportId transportId,
|
||||||
|
DuplexTransportConnection connection) {
|
||||||
|
this.pendingContactId = pendingContactId;
|
||||||
|
this.transportId = transportId;
|
||||||
|
this.connection = connection;
|
||||||
|
reader = connection.getReader();
|
||||||
|
writer = connection.getWriter();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void run() {
|
||||||
|
// Allocate the outgoing stream context
|
||||||
|
StreamContext ctxOut;
|
||||||
|
try {
|
||||||
|
ctxOut = keyManager.getStreamContext(pendingContactId,
|
||||||
|
transportId);
|
||||||
|
} catch (DbException e) {
|
||||||
|
logException(LOG, WARNING, e);
|
||||||
|
onError();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (ctxOut == null) {
|
||||||
|
LOG.warning("Could not allocate stream context");
|
||||||
|
onError();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
// Flush the output stream to send the outgoing stream header
|
||||||
|
StreamWriter out;
|
||||||
|
try {
|
||||||
|
out = streamWriterFactory.createStreamWriter(
|
||||||
|
writer.getOutputStream(), ctxOut);
|
||||||
|
out.getOutputStream().flush();
|
||||||
|
} catch (IOException e) {
|
||||||
|
logException(LOG, WARNING, e);
|
||||||
|
onError();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
// Read and recognise the tag
|
||||||
|
StreamContext ctxIn;
|
||||||
|
try {
|
||||||
|
byte[] tag = readTag(reader.getInputStream());
|
||||||
|
ctxIn = keyManager.getStreamContext(transportId, tag);
|
||||||
|
} catch (IOException | DbException e) {
|
||||||
|
logException(LOG, WARNING, e);
|
||||||
|
onError();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
// Unrecognised tags are suspicious in this case
|
||||||
|
if (ctxIn == null) {
|
||||||
|
LOG.warning("Unrecognised tag for returning stream");
|
||||||
|
onError();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
// Check that the stream comes from the expected pending contact
|
||||||
|
PendingContactId inPendingContactId = ctxIn.getPendingContactId();
|
||||||
|
if (inPendingContactId == null) {
|
||||||
|
LOG.warning("Expected rendezvous tag, got contact tag");
|
||||||
|
onError();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (!inPendingContactId.equals(pendingContactId)) {
|
||||||
|
LOG.warning("Wrong pending contact ID for returning stream");
|
||||||
|
onError();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
// Close the connection if it's redundant
|
||||||
|
if (!connectionRegistry.registerConnection(pendingContactId)) {
|
||||||
|
LOG.info("Redundant rendezvous connection");
|
||||||
|
onError();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
// Handshake and exchange contacts
|
||||||
|
try {
|
||||||
|
InputStream in = streamReaderFactory.createStreamReader(
|
||||||
|
reader.getInputStream(), ctxIn);
|
||||||
|
HandshakeResult result = handshakeManager.handshake(
|
||||||
|
pendingContactId, in, out);
|
||||||
|
Contact contact = contactExchangeManager.exchangeContacts(
|
||||||
|
pendingContactId, connection, result.getMasterKey(),
|
||||||
|
result.isAlice(), false);
|
||||||
|
connectionRegistry.unregisterConnection(pendingContactId, true);
|
||||||
|
// Reuse the connection as a transport connection
|
||||||
|
manageOutgoingConnection(contact.getId(), transportId,
|
||||||
|
connection);
|
||||||
|
} catch (IOException | DbException e) {
|
||||||
|
logException(LOG, WARNING, e);
|
||||||
|
onError();
|
||||||
|
connectionRegistry.unregisterConnection(pendingContactId,
|
||||||
|
false);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void onError() {
|
||||||
|
// 'Recognised' is always true for outgoing connections
|
||||||
|
disposeOnError(reader, true);
|
||||||
|
disposeOnError(writer);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,150 @@
|
|||||||
|
package org.briarproject.bramble.plugin;
|
||||||
|
|
||||||
|
import org.briarproject.bramble.api.Multiset;
|
||||||
|
import org.briarproject.bramble.api.contact.ContactId;
|
||||||
|
import org.briarproject.bramble.api.contact.PendingContactId;
|
||||||
|
import org.briarproject.bramble.api.event.EventBus;
|
||||||
|
import org.briarproject.bramble.api.nullsafety.NotNullByDefault;
|
||||||
|
import org.briarproject.bramble.api.plugin.ConnectionRegistry;
|
||||||
|
import org.briarproject.bramble.api.plugin.TransportId;
|
||||||
|
import org.briarproject.bramble.api.plugin.event.ConnectionClosedEvent;
|
||||||
|
import org.briarproject.bramble.api.plugin.event.ConnectionOpenedEvent;
|
||||||
|
import org.briarproject.bramble.api.plugin.event.ContactConnectedEvent;
|
||||||
|
import org.briarproject.bramble.api.plugin.event.ContactDisconnectedEvent;
|
||||||
|
import org.briarproject.bramble.api.rendezvous.event.RendezvousConnectionClosedEvent;
|
||||||
|
import org.briarproject.bramble.api.rendezvous.event.RendezvousConnectionOpenedEvent;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.Collection;
|
||||||
|
import java.util.Collections;
|
||||||
|
import java.util.HashMap;
|
||||||
|
import java.util.HashSet;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Map;
|
||||||
|
import java.util.Set;
|
||||||
|
import java.util.logging.Logger;
|
||||||
|
|
||||||
|
import javax.annotation.concurrent.GuardedBy;
|
||||||
|
import javax.annotation.concurrent.ThreadSafe;
|
||||||
|
import javax.inject.Inject;
|
||||||
|
|
||||||
|
import static java.util.logging.Level.INFO;
|
||||||
|
import static java.util.logging.Logger.getLogger;
|
||||||
|
|
||||||
|
@ThreadSafe
|
||||||
|
@NotNullByDefault
|
||||||
|
class ConnectionRegistryImpl implements ConnectionRegistry {
|
||||||
|
|
||||||
|
private static final Logger LOG =
|
||||||
|
getLogger(ConnectionRegistryImpl.class.getName());
|
||||||
|
|
||||||
|
private final EventBus eventBus;
|
||||||
|
|
||||||
|
private final Object lock = new Object();
|
||||||
|
@GuardedBy("lock")
|
||||||
|
private final Map<TransportId, Multiset<ContactId>> contactConnections;
|
||||||
|
@GuardedBy("lock")
|
||||||
|
private final Multiset<ContactId> contactCounts;
|
||||||
|
@GuardedBy("lock")
|
||||||
|
private final Set<PendingContactId> connectedPendingContacts;
|
||||||
|
|
||||||
|
@Inject
|
||||||
|
ConnectionRegistryImpl(EventBus eventBus) {
|
||||||
|
this.eventBus = eventBus;
|
||||||
|
contactConnections = new HashMap<>();
|
||||||
|
contactCounts = new Multiset<>();
|
||||||
|
connectedPendingContacts = new HashSet<>();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void registerConnection(ContactId c, TransportId t,
|
||||||
|
boolean incoming) {
|
||||||
|
if (LOG.isLoggable(INFO)) {
|
||||||
|
if (incoming) LOG.info("Incoming connection registered: " + t);
|
||||||
|
else LOG.info("Outgoing connection registered: " + t);
|
||||||
|
}
|
||||||
|
boolean firstConnection = false;
|
||||||
|
synchronized (lock) {
|
||||||
|
Multiset<ContactId> m = contactConnections.get(t);
|
||||||
|
if (m == null) {
|
||||||
|
m = new Multiset<>();
|
||||||
|
contactConnections.put(t, m);
|
||||||
|
}
|
||||||
|
m.add(c);
|
||||||
|
if (contactCounts.add(c) == 1) firstConnection = true;
|
||||||
|
}
|
||||||
|
eventBus.broadcast(new ConnectionOpenedEvent(c, t, incoming));
|
||||||
|
if (firstConnection) {
|
||||||
|
LOG.info("Contact connected");
|
||||||
|
eventBus.broadcast(new ContactConnectedEvent(c));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void unregisterConnection(ContactId c, TransportId t,
|
||||||
|
boolean incoming) {
|
||||||
|
if (LOG.isLoggable(INFO)) {
|
||||||
|
if (incoming) LOG.info("Incoming connection unregistered: " + t);
|
||||||
|
else LOG.info("Outgoing connection unregistered: " + t);
|
||||||
|
}
|
||||||
|
boolean lastConnection = false;
|
||||||
|
synchronized (lock) {
|
||||||
|
Multiset<ContactId> m = contactConnections.get(t);
|
||||||
|
if (m == null || !m.contains(c))
|
||||||
|
throw new IllegalArgumentException();
|
||||||
|
m.remove(c);
|
||||||
|
if (contactCounts.remove(c) == 0) lastConnection = true;
|
||||||
|
}
|
||||||
|
eventBus.broadcast(new ConnectionClosedEvent(c, t, incoming));
|
||||||
|
if (lastConnection) {
|
||||||
|
LOG.info("Contact disconnected");
|
||||||
|
eventBus.broadcast(new ContactDisconnectedEvent(c));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Collection<ContactId> getConnectedContacts(TransportId t) {
|
||||||
|
synchronized (lock) {
|
||||||
|
Multiset<ContactId> m = contactConnections.get(t);
|
||||||
|
if (m == null) return Collections.emptyList();
|
||||||
|
List<ContactId> ids = new ArrayList<>(m.keySet());
|
||||||
|
if (LOG.isLoggable(INFO))
|
||||||
|
LOG.info(ids.size() + " contacts connected: " + t);
|
||||||
|
return ids;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean isConnected(ContactId c, TransportId t) {
|
||||||
|
synchronized (lock) {
|
||||||
|
Multiset<ContactId> m = contactConnections.get(t);
|
||||||
|
return m != null && m.contains(c);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean isConnected(ContactId c) {
|
||||||
|
synchronized (lock) {
|
||||||
|
return contactCounts.contains(c);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean registerConnection(PendingContactId p) {
|
||||||
|
boolean added;
|
||||||
|
synchronized (lock) {
|
||||||
|
added = connectedPendingContacts.add(p);
|
||||||
|
}
|
||||||
|
if (added) eventBus.broadcast(new RendezvousConnectionOpenedEvent(p));
|
||||||
|
return added;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void unregisterConnection(PendingContactId p, boolean success) {
|
||||||
|
synchronized (lock) {
|
||||||
|
if (!connectedPendingContacts.remove(p))
|
||||||
|
throw new IllegalArgumentException();
|
||||||
|
}
|
||||||
|
eventBus.broadcast(new RendezvousConnectionClosedEvent(p, success));
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,12 +1,12 @@
|
|||||||
package org.briarproject.bramble.plugin;
|
package org.briarproject.bramble.plugin;
|
||||||
|
|
||||||
import org.briarproject.bramble.api.connection.ConnectionManager;
|
|
||||||
import org.briarproject.bramble.api.db.DbException;
|
import org.briarproject.bramble.api.db.DbException;
|
||||||
import org.briarproject.bramble.api.event.EventBus;
|
import org.briarproject.bramble.api.event.EventBus;
|
||||||
import org.briarproject.bramble.api.lifecycle.IoExecutor;
|
import org.briarproject.bramble.api.lifecycle.IoExecutor;
|
||||||
import org.briarproject.bramble.api.lifecycle.Service;
|
import org.briarproject.bramble.api.lifecycle.Service;
|
||||||
import org.briarproject.bramble.api.lifecycle.ServiceException;
|
import org.briarproject.bramble.api.lifecycle.ServiceException;
|
||||||
import org.briarproject.bramble.api.nullsafety.NotNullByDefault;
|
import org.briarproject.bramble.api.nullsafety.NotNullByDefault;
|
||||||
|
import org.briarproject.bramble.api.plugin.ConnectionManager;
|
||||||
import org.briarproject.bramble.api.plugin.Plugin;
|
import org.briarproject.bramble.api.plugin.Plugin;
|
||||||
import org.briarproject.bramble.api.plugin.Plugin.State;
|
import org.briarproject.bramble.api.plugin.Plugin.State;
|
||||||
import org.briarproject.bramble.api.plugin.PluginCallback;
|
import org.briarproject.bramble.api.plugin.PluginCallback;
|
||||||
@@ -50,7 +50,7 @@ import static java.util.logging.Level.WARNING;
|
|||||||
import static java.util.logging.Logger.getLogger;
|
import static java.util.logging.Logger.getLogger;
|
||||||
import static org.briarproject.bramble.api.plugin.Plugin.PREF_PLUGIN_ENABLE;
|
import static org.briarproject.bramble.api.plugin.Plugin.PREF_PLUGIN_ENABLE;
|
||||||
import static org.briarproject.bramble.api.plugin.Plugin.State.ACTIVE;
|
import static org.briarproject.bramble.api.plugin.Plugin.State.ACTIVE;
|
||||||
import static org.briarproject.bramble.api.plugin.Plugin.State.STARTING_STOPPING;
|
import static org.briarproject.bramble.api.plugin.Plugin.State.DISABLED;
|
||||||
import static org.briarproject.bramble.util.LogUtils.logDuration;
|
import static org.briarproject.bramble.util.LogUtils.logDuration;
|
||||||
import static org.briarproject.bramble.util.LogUtils.logException;
|
import static org.briarproject.bramble.util.LogUtils.logException;
|
||||||
import static org.briarproject.bramble.util.LogUtils.now;
|
import static org.briarproject.bramble.util.LogUtils.now;
|
||||||
@@ -277,7 +277,7 @@ class PluginManagerImpl implements PluginManager, Service {
|
|||||||
|
|
||||||
private final TransportId id;
|
private final TransportId id;
|
||||||
private final AtomicReference<State> state =
|
private final AtomicReference<State> state =
|
||||||
new AtomicReference<>(STARTING_STOPPING);
|
new AtomicReference<>(DISABLED);
|
||||||
|
|
||||||
private Callback(TransportId id) {
|
private Callback(TransportId id) {
|
||||||
this.id = id;
|
this.id = id;
|
||||||
|
|||||||
@@ -3,6 +3,8 @@ package org.briarproject.bramble.plugin;
|
|||||||
import org.briarproject.bramble.api.event.EventBus;
|
import org.briarproject.bramble.api.event.EventBus;
|
||||||
import org.briarproject.bramble.api.lifecycle.LifecycleManager;
|
import org.briarproject.bramble.api.lifecycle.LifecycleManager;
|
||||||
import org.briarproject.bramble.api.plugin.BackoffFactory;
|
import org.briarproject.bramble.api.plugin.BackoffFactory;
|
||||||
|
import org.briarproject.bramble.api.plugin.ConnectionManager;
|
||||||
|
import org.briarproject.bramble.api.plugin.ConnectionRegistry;
|
||||||
import org.briarproject.bramble.api.plugin.PluginConfig;
|
import org.briarproject.bramble.api.plugin.PluginConfig;
|
||||||
import org.briarproject.bramble.api.plugin.PluginManager;
|
import org.briarproject.bramble.api.plugin.PluginManager;
|
||||||
|
|
||||||
@@ -27,6 +29,20 @@ public class PluginModule {
|
|||||||
return new BackoffFactoryImpl();
|
return new BackoffFactoryImpl();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Provides
|
||||||
|
@Singleton
|
||||||
|
ConnectionManager provideConnectionManager(
|
||||||
|
ConnectionManagerImpl connectionManager) {
|
||||||
|
return connectionManager;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Provides
|
||||||
|
@Singleton
|
||||||
|
ConnectionRegistry provideConnectionRegistry(
|
||||||
|
ConnectionRegistryImpl connectionRegistry) {
|
||||||
|
return connectionRegistry;
|
||||||
|
}
|
||||||
|
|
||||||
@Provides
|
@Provides
|
||||||
@Singleton
|
@Singleton
|
||||||
PluginManager providePluginManager(LifecycleManager lifecycleManager,
|
PluginManager providePluginManager(LifecycleManager lifecycleManager,
|
||||||
|
|||||||
@@ -1,8 +1,6 @@
|
|||||||
package org.briarproject.bramble.plugin;
|
package org.briarproject.bramble.plugin;
|
||||||
|
|
||||||
import org.briarproject.bramble.api.Pair;
|
import org.briarproject.bramble.api.Pair;
|
||||||
import org.briarproject.bramble.api.connection.ConnectionManager;
|
|
||||||
import org.briarproject.bramble.api.connection.ConnectionRegistry;
|
|
||||||
import org.briarproject.bramble.api.contact.ContactId;
|
import org.briarproject.bramble.api.contact.ContactId;
|
||||||
import org.briarproject.bramble.api.contact.event.ContactAddedEvent;
|
import org.briarproject.bramble.api.contact.event.ContactAddedEvent;
|
||||||
import org.briarproject.bramble.api.db.DbException;
|
import org.briarproject.bramble.api.db.DbException;
|
||||||
@@ -11,6 +9,8 @@ import org.briarproject.bramble.api.event.EventListener;
|
|||||||
import org.briarproject.bramble.api.lifecycle.IoExecutor;
|
import org.briarproject.bramble.api.lifecycle.IoExecutor;
|
||||||
import org.briarproject.bramble.api.nullsafety.NotNullByDefault;
|
import org.briarproject.bramble.api.nullsafety.NotNullByDefault;
|
||||||
import org.briarproject.bramble.api.plugin.ConnectionHandler;
|
import org.briarproject.bramble.api.plugin.ConnectionHandler;
|
||||||
|
import org.briarproject.bramble.api.plugin.ConnectionManager;
|
||||||
|
import org.briarproject.bramble.api.plugin.ConnectionRegistry;
|
||||||
import org.briarproject.bramble.api.plugin.Plugin;
|
import org.briarproject.bramble.api.plugin.Plugin;
|
||||||
import org.briarproject.bramble.api.plugin.PluginManager;
|
import org.briarproject.bramble.api.plugin.PluginManager;
|
||||||
import org.briarproject.bramble.api.plugin.TransportConnectionReader;
|
import org.briarproject.bramble.api.plugin.TransportConnectionReader;
|
||||||
@@ -98,8 +98,8 @@ class PollerImpl implements Poller, EventListener {
|
|||||||
ConnectionClosedEvent c = (ConnectionClosedEvent) e;
|
ConnectionClosedEvent c = (ConnectionClosedEvent) e;
|
||||||
// Reschedule polling, the polling interval may have decreased
|
// Reschedule polling, the polling interval may have decreased
|
||||||
reschedule(c.getTransportId());
|
reschedule(c.getTransportId());
|
||||||
// If an outgoing connection failed, try to reconnect
|
if (!c.isIncoming()) {
|
||||||
if (!c.isIncoming() && c.isException()) {
|
// Connect to the disconnected contact
|
||||||
connectToContact(c.getContactId(), c.getTransportId());
|
connectToContact(c.getContactId(), c.getTransportId());
|
||||||
}
|
}
|
||||||
} else if (e instanceof ConnectionOpenedEvent) {
|
} else if (e instanceof ConnectionOpenedEvent) {
|
||||||
@@ -215,7 +215,7 @@ class PollerImpl implements Poller, EventListener {
|
|||||||
Map<ContactId, TransportProperties> remote =
|
Map<ContactId, TransportProperties> remote =
|
||||||
transportPropertyManager.getRemoteProperties(t);
|
transportPropertyManager.getRemoteProperties(t);
|
||||||
Collection<ContactId> connected =
|
Collection<ContactId> connected =
|
||||||
connectionRegistry.getConnectedOrBetterContacts(t);
|
connectionRegistry.getConnectedContacts(t);
|
||||||
Collection<Pair<TransportProperties, ConnectionHandler>>
|
Collection<Pair<TransportProperties, ConnectionHandler>>
|
||||||
properties = new ArrayList<>();
|
properties = new ArrayList<>();
|
||||||
for (Entry<ContactId, TransportProperties> e : remote.entrySet()) {
|
for (Entry<ContactId, TransportProperties> e : remote.entrySet()) {
|
||||||
|
|||||||
@@ -23,9 +23,17 @@ interface BluetoothConnectionLimiter {
|
|||||||
boolean canOpenContactConnection();
|
boolean canOpenContactConnection();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Informs the limiter that the given connection has been opened.
|
* Informs the limiter that a contact connection has been opened. The
|
||||||
|
* limiter may close the new connection if key agreement is in progress.
|
||||||
|
* <p/>
|
||||||
|
* Returns false if the limiter has closed the new connection.
|
||||||
*/
|
*/
|
||||||
void connectionOpened(DuplexTransportConnection conn);
|
boolean contactConnectionOpened(DuplexTransportConnection conn);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Informs the limiter that a key agreement connection has been opened.
|
||||||
|
*/
|
||||||
|
void keyAgreementConnectionOpened(DuplexTransportConnection conn);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Informs the limiter that the given connection has been closed.
|
* Informs the limiter that the given connection has been closed.
|
||||||
|
|||||||
@@ -1,48 +1,46 @@
|
|||||||
package org.briarproject.bramble.plugin.bluetooth;
|
package org.briarproject.bramble.plugin.bluetooth;
|
||||||
|
|
||||||
import org.briarproject.bramble.api.event.EventBus;
|
|
||||||
import org.briarproject.bramble.api.nullsafety.NotNullByDefault;
|
import org.briarproject.bramble.api.nullsafety.NotNullByDefault;
|
||||||
import org.briarproject.bramble.api.plugin.duplex.DuplexTransportConnection;
|
import org.briarproject.bramble.api.plugin.duplex.DuplexTransportConnection;
|
||||||
import org.briarproject.bramble.api.sync.event.CloseSyncConnectionsEvent;
|
|
||||||
|
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.util.ArrayList;
|
||||||
import java.util.LinkedList;
|
import java.util.LinkedList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.logging.Logger;
|
import java.util.logging.Logger;
|
||||||
|
|
||||||
import javax.annotation.concurrent.GuardedBy;
|
|
||||||
import javax.annotation.concurrent.ThreadSafe;
|
import javax.annotation.concurrent.ThreadSafe;
|
||||||
|
|
||||||
import static java.util.logging.Level.INFO;
|
import static java.util.logging.Level.INFO;
|
||||||
import static java.util.logging.Logger.getLogger;
|
import static java.util.logging.Level.WARNING;
|
||||||
import static org.briarproject.bramble.api.plugin.BluetoothConstants.ID;
|
import static org.briarproject.bramble.util.LogUtils.logException;
|
||||||
|
|
||||||
@NotNullByDefault
|
@NotNullByDefault
|
||||||
@ThreadSafe
|
@ThreadSafe
|
||||||
class BluetoothConnectionLimiterImpl implements BluetoothConnectionLimiter {
|
class BluetoothConnectionLimiterImpl implements BluetoothConnectionLimiter {
|
||||||
|
|
||||||
private static final Logger LOG =
|
private static final Logger LOG =
|
||||||
getLogger(BluetoothConnectionLimiterImpl.class.getName());
|
Logger.getLogger(BluetoothConnectionLimiterImpl.class.getName());
|
||||||
|
|
||||||
private final EventBus eventBus;
|
|
||||||
|
|
||||||
private final Object lock = new Object();
|
private final Object lock = new Object();
|
||||||
@GuardedBy("lock")
|
// The following are locking: lock
|
||||||
private final List<DuplexTransportConnection> connections =
|
private final LinkedList<DuplexTransportConnection> connections =
|
||||||
new LinkedList<>();
|
new LinkedList<>();
|
||||||
@GuardedBy("lock")
|
|
||||||
private boolean keyAgreementInProgress = false;
|
private boolean keyAgreementInProgress = false;
|
||||||
|
|
||||||
BluetoothConnectionLimiterImpl(EventBus eventBus) {
|
|
||||||
this.eventBus = eventBus;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void keyAgreementStarted() {
|
public void keyAgreementStarted() {
|
||||||
|
List<DuplexTransportConnection> close;
|
||||||
synchronized (lock) {
|
synchronized (lock) {
|
||||||
keyAgreementInProgress = true;
|
keyAgreementInProgress = true;
|
||||||
|
close = new ArrayList<>(connections);
|
||||||
|
connections.clear();
|
||||||
}
|
}
|
||||||
LOG.info("Key agreement started");
|
if (LOG.isLoggable(INFO)) {
|
||||||
eventBus.broadcast(new CloseSyncConnectionsEvent(ID));
|
LOG.info("Key agreement started, closing " + close.size() +
|
||||||
|
" connections");
|
||||||
|
}
|
||||||
|
for (DuplexTransportConnection conn : close) tryToClose(conn);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@@ -67,22 +65,44 @@ class BluetoothConnectionLimiterImpl implements BluetoothConnectionLimiter {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void connectionOpened(DuplexTransportConnection conn) {
|
public boolean contactConnectionOpened(DuplexTransportConnection conn) {
|
||||||
|
boolean accept = true;
|
||||||
synchronized (lock) {
|
synchronized (lock) {
|
||||||
connections.add(conn);
|
if (keyAgreementInProgress) {
|
||||||
if (LOG.isLoggable(INFO)) {
|
LOG.info("Refusing contact connection during key agreement");
|
||||||
LOG.info("Connection opened, " + connections.size() + " open");
|
accept = false;
|
||||||
|
} else {
|
||||||
|
LOG.info("Accepting contact connection");
|
||||||
|
connections.add(conn);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if (!accept) tryToClose(conn);
|
||||||
|
return accept;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void keyAgreementConnectionOpened(DuplexTransportConnection conn) {
|
||||||
|
synchronized (lock) {
|
||||||
|
LOG.info("Accepting key agreement connection");
|
||||||
|
connections.add(conn);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void tryToClose(DuplexTransportConnection conn) {
|
||||||
|
try {
|
||||||
|
conn.getWriter().dispose(false);
|
||||||
|
conn.getReader().dispose(false, false);
|
||||||
|
} catch (IOException e) {
|
||||||
|
logException(LOG, WARNING, e);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void connectionClosed(DuplexTransportConnection conn) {
|
public void connectionClosed(DuplexTransportConnection conn) {
|
||||||
synchronized (lock) {
|
synchronized (lock) {
|
||||||
connections.remove(conn);
|
connections.remove(conn);
|
||||||
if (LOG.isLoggable(INFO)) {
|
if (LOG.isLoggable(INFO))
|
||||||
LOG.info("Connection closed, " + connections.size() + " open");
|
LOG.info("Connection closed, " + connections.size() + " open");
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -5,7 +5,6 @@ import org.briarproject.bramble.api.Pair;
|
|||||||
import org.briarproject.bramble.api.data.BdfList;
|
import org.briarproject.bramble.api.data.BdfList;
|
||||||
import org.briarproject.bramble.api.event.Event;
|
import org.briarproject.bramble.api.event.Event;
|
||||||
import org.briarproject.bramble.api.event.EventListener;
|
import org.briarproject.bramble.api.event.EventListener;
|
||||||
import org.briarproject.bramble.api.io.TimeoutMonitor;
|
|
||||||
import org.briarproject.bramble.api.keyagreement.KeyAgreementConnection;
|
import org.briarproject.bramble.api.keyagreement.KeyAgreementConnection;
|
||||||
import org.briarproject.bramble.api.keyagreement.KeyAgreementListener;
|
import org.briarproject.bramble.api.keyagreement.KeyAgreementListener;
|
||||||
import org.briarproject.bramble.api.keyagreement.event.KeyAgreementListeningEvent;
|
import org.briarproject.bramble.api.keyagreement.event.KeyAgreementListeningEvent;
|
||||||
@@ -49,11 +48,11 @@ import static org.briarproject.bramble.api.keyagreement.KeyAgreementConstants.TR
|
|||||||
import static org.briarproject.bramble.api.plugin.BluetoothConstants.ID;
|
import static org.briarproject.bramble.api.plugin.BluetoothConstants.ID;
|
||||||
import static org.briarproject.bramble.api.plugin.BluetoothConstants.PROP_ADDRESS;
|
import static org.briarproject.bramble.api.plugin.BluetoothConstants.PROP_ADDRESS;
|
||||||
import static org.briarproject.bramble.api.plugin.BluetoothConstants.PROP_UUID;
|
import static org.briarproject.bramble.api.plugin.BluetoothConstants.PROP_UUID;
|
||||||
|
import static org.briarproject.bramble.api.plugin.BluetoothConstants.REASON_NO_BT_ADAPTER;
|
||||||
import static org.briarproject.bramble.api.plugin.BluetoothConstants.UUID_BYTES;
|
import static org.briarproject.bramble.api.plugin.BluetoothConstants.UUID_BYTES;
|
||||||
import static org.briarproject.bramble.api.plugin.Plugin.State.ACTIVE;
|
import static org.briarproject.bramble.api.plugin.Plugin.State.ACTIVE;
|
||||||
import static org.briarproject.bramble.api.plugin.Plugin.State.DISABLED;
|
import static org.briarproject.bramble.api.plugin.Plugin.State.DISABLED;
|
||||||
import static org.briarproject.bramble.api.plugin.Plugin.State.INACTIVE;
|
import static org.briarproject.bramble.api.plugin.Plugin.State.INACTIVE;
|
||||||
import static org.briarproject.bramble.api.plugin.Plugin.State.STARTING_STOPPING;
|
|
||||||
import static org.briarproject.bramble.util.LogUtils.logException;
|
import static org.briarproject.bramble.util.LogUtils.logException;
|
||||||
import static org.briarproject.bramble.util.PrivacyUtils.scrubMacAddress;
|
import static org.briarproject.bramble.util.PrivacyUtils.scrubMacAddress;
|
||||||
import static org.briarproject.bramble.util.StringUtils.isNullOrEmpty;
|
import static org.briarproject.bramble.util.StringUtils.isNullOrEmpty;
|
||||||
@@ -68,13 +67,12 @@ abstract class BluetoothPlugin<SS> implements DuplexPlugin, EventListener {
|
|||||||
getLogger(BluetoothPlugin.class.getName());
|
getLogger(BluetoothPlugin.class.getName());
|
||||||
|
|
||||||
final BluetoothConnectionLimiter connectionLimiter;
|
final BluetoothConnectionLimiter connectionLimiter;
|
||||||
final TimeoutMonitor timeoutMonitor;
|
|
||||||
|
|
||||||
private final Executor ioExecutor;
|
private final Executor ioExecutor;
|
||||||
private final SecureRandom secureRandom;
|
private final SecureRandom secureRandom;
|
||||||
private final Backoff backoff;
|
private final Backoff backoff;
|
||||||
private final PluginCallback callback;
|
private final PluginCallback callback;
|
||||||
private final int maxLatency, maxIdleTime;
|
private final int maxLatency;
|
||||||
private final AtomicBoolean used = new AtomicBoolean(false);
|
private final AtomicBoolean used = new AtomicBoolean(false);
|
||||||
|
|
||||||
protected final PluginState state = new PluginState();
|
protected final PluginState state = new PluginState();
|
||||||
@@ -114,17 +112,14 @@ abstract class BluetoothPlugin<SS> implements DuplexPlugin, EventListener {
|
|||||||
abstract DuplexTransportConnection discoverAndConnect(String uuid);
|
abstract DuplexTransportConnection discoverAndConnect(String uuid);
|
||||||
|
|
||||||
BluetoothPlugin(BluetoothConnectionLimiter connectionLimiter,
|
BluetoothPlugin(BluetoothConnectionLimiter connectionLimiter,
|
||||||
TimeoutMonitor timeoutMonitor, Executor ioExecutor,
|
Executor ioExecutor, SecureRandom secureRandom,
|
||||||
SecureRandom secureRandom, Backoff backoff,
|
Backoff backoff, PluginCallback callback, int maxLatency) {
|
||||||
PluginCallback callback, int maxLatency, int maxIdleTime) {
|
|
||||||
this.connectionLimiter = connectionLimiter;
|
this.connectionLimiter = connectionLimiter;
|
||||||
this.timeoutMonitor = timeoutMonitor;
|
|
||||||
this.ioExecutor = ioExecutor;
|
this.ioExecutor = ioExecutor;
|
||||||
this.secureRandom = secureRandom;
|
this.secureRandom = secureRandom;
|
||||||
this.backoff = backoff;
|
this.backoff = backoff;
|
||||||
this.callback = callback;
|
this.callback = callback;
|
||||||
this.maxLatency = maxLatency;
|
this.maxLatency = maxLatency;
|
||||||
this.maxIdleTime = maxIdleTime;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void onAdapterEnabled() {
|
void onAdapterEnabled() {
|
||||||
@@ -157,21 +152,23 @@ abstract class BluetoothPlugin<SS> implements DuplexPlugin, EventListener {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int getMaxIdleTime() {
|
public int getMaxIdleTime() {
|
||||||
return maxIdleTime;
|
// Bluetooth detects dead connections so we don't need keepalives
|
||||||
|
return Integer.MAX_VALUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void start() throws PluginException {
|
public void start() throws PluginException {
|
||||||
if (used.getAndSet(true)) throw new IllegalStateException();
|
if (used.getAndSet(true)) throw new IllegalStateException();
|
||||||
Settings settings = callback.getSettings();
|
|
||||||
boolean enabledByUser = settings.getBoolean(PREF_PLUGIN_ENABLE, false);
|
|
||||||
state.setStarted(enabledByUser);
|
|
||||||
try {
|
try {
|
||||||
initialiseAdapter();
|
initialiseAdapter();
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
|
state.setNoAdapter();
|
||||||
throw new PluginException(e);
|
throw new PluginException(e);
|
||||||
}
|
}
|
||||||
updateProperties();
|
updateProperties();
|
||||||
|
Settings settings = callback.getSettings();
|
||||||
|
boolean enabledByUser = settings.getBoolean(PREF_PLUGIN_ENABLE, false);
|
||||||
|
state.setStarted(enabledByUser);
|
||||||
if (enabledByUser) {
|
if (enabledByUser) {
|
||||||
if (isAdapterEnabled()) bind();
|
if (isAdapterEnabled()) bind();
|
||||||
else enableAdapter();
|
else enableAdapter();
|
||||||
@@ -236,9 +233,9 @@ abstract class BluetoothPlugin<SS> implements DuplexPlugin, EventListener {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
LOG.info("Connection received");
|
LOG.info("Connection received");
|
||||||
connectionLimiter.connectionOpened(conn);
|
|
||||||
backoff.reset();
|
backoff.reset();
|
||||||
callback.handleConnection(conn);
|
if (connectionLimiter.contactConnectionOpened(conn))
|
||||||
|
callback.handleConnection(conn);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -255,8 +252,8 @@ abstract class BluetoothPlugin<SS> implements DuplexPlugin, EventListener {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int getReasonsDisabled() {
|
public int getReasonDisabled() {
|
||||||
return state.getReasonsDisabled();
|
return state.getReasonDisabled();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@@ -285,10 +282,13 @@ abstract class BluetoothPlugin<SS> implements DuplexPlugin, EventListener {
|
|||||||
String uuid = p.get(PROP_UUID);
|
String uuid = p.get(PROP_UUID);
|
||||||
if (isNullOrEmpty(uuid)) return;
|
if (isNullOrEmpty(uuid)) return;
|
||||||
ioExecutor.execute(() -> {
|
ioExecutor.execute(() -> {
|
||||||
|
if (getState() != ACTIVE) return;
|
||||||
|
if (!connectionLimiter.canOpenContactConnection()) return;
|
||||||
DuplexTransportConnection d = createConnection(p);
|
DuplexTransportConnection d = createConnection(p);
|
||||||
if (d != null) {
|
if (d != null) {
|
||||||
backoff.reset();
|
backoff.reset();
|
||||||
h.handleConnection(d);
|
if (connectionLimiter.contactConnectionOpened(d))
|
||||||
|
h.handleConnection(d);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
@@ -333,8 +333,9 @@ abstract class BluetoothPlugin<SS> implements DuplexPlugin, EventListener {
|
|||||||
String uuid = p.get(PROP_UUID);
|
String uuid = p.get(PROP_UUID);
|
||||||
if (isNullOrEmpty(uuid)) return null;
|
if (isNullOrEmpty(uuid)) return null;
|
||||||
DuplexTransportConnection conn = connect(address, uuid);
|
DuplexTransportConnection conn = connect(address, uuid);
|
||||||
if (conn != null) connectionLimiter.connectionOpened(conn);
|
if (conn == null) return null;
|
||||||
return conn;
|
// TODO: Why don't we reset the backoff here?
|
||||||
|
return connectionLimiter.contactConnectionOpened(conn) ? conn : null;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@@ -390,7 +391,7 @@ abstract class BluetoothPlugin<SS> implements DuplexPlugin, EventListener {
|
|||||||
LOG.info("Connecting to key agreement UUID " + uuid);
|
LOG.info("Connecting to key agreement UUID " + uuid);
|
||||||
conn = connect(address, uuid);
|
conn = connect(address, uuid);
|
||||||
}
|
}
|
||||||
if (conn != null) connectionLimiter.connectionOpened(conn);
|
if (conn != null) connectionLimiter.keyAgreementConnectionOpened(conn);
|
||||||
return conn;
|
return conn;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -459,7 +460,7 @@ abstract class BluetoothPlugin<SS> implements DuplexPlugin, EventListener {
|
|||||||
public KeyAgreementConnection accept() throws IOException {
|
public KeyAgreementConnection accept() throws IOException {
|
||||||
DuplexTransportConnection conn = acceptConnection(ss);
|
DuplexTransportConnection conn = acceptConnection(ss);
|
||||||
if (LOG.isLoggable(INFO)) LOG.info(ID + ": Incoming connection");
|
if (LOG.isLoggable(INFO)) LOG.info(ID + ": Incoming connection");
|
||||||
connectionLimiter.connectionOpened(conn);
|
connectionLimiter.keyAgreementConnectionOpened(conn);
|
||||||
return new KeyAgreementConnection(conn, ID);
|
return new KeyAgreementConnection(conn, ID);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -476,6 +477,7 @@ abstract class BluetoothPlugin<SS> implements DuplexPlugin, EventListener {
|
|||||||
@GuardedBy("this")
|
@GuardedBy("this")
|
||||||
private boolean started = false,
|
private boolean started = false,
|
||||||
stopped = false,
|
stopped = false,
|
||||||
|
noAdapter = false,
|
||||||
enabledByUser = false;
|
enabledByUser = false;
|
||||||
|
|
||||||
@GuardedBy("this")
|
@GuardedBy("this")
|
||||||
@@ -497,6 +499,11 @@ abstract class BluetoothPlugin<SS> implements DuplexPlugin, EventListener {
|
|||||||
return ss;
|
return ss;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
synchronized void setNoAdapter() {
|
||||||
|
noAdapter = true;
|
||||||
|
callback.pluginStateChanged(getState());
|
||||||
|
}
|
||||||
|
|
||||||
@Nullable
|
@Nullable
|
||||||
synchronized SS setEnabledByUser(boolean enabledByUser) {
|
synchronized SS setEnabledByUser(boolean enabledByUser) {
|
||||||
this.enabledByUser = enabledByUser;
|
this.enabledByUser = enabledByUser;
|
||||||
@@ -525,13 +532,14 @@ abstract class BluetoothPlugin<SS> implements DuplexPlugin, EventListener {
|
|||||||
}
|
}
|
||||||
|
|
||||||
synchronized State getState() {
|
synchronized State getState() {
|
||||||
if (!started || stopped) return STARTING_STOPPING;
|
if (!started || stopped || !enabledByUser) return DISABLED;
|
||||||
if (!enabledByUser) return DISABLED;
|
|
||||||
return serverSocket == null ? INACTIVE : ACTIVE;
|
return serverSocket == null ? INACTIVE : ACTIVE;
|
||||||
}
|
}
|
||||||
|
|
||||||
synchronized int getReasonsDisabled() {
|
synchronized int getReasonDisabled() {
|
||||||
return getState() == DISABLED ? REASON_USER : 0;
|
if (noAdapter && !stopped) return REASON_NO_BT_ADAPTER;
|
||||||
|
if (!started || stopped) return REASON_STARTING_STOPPING;
|
||||||
|
return enabledByUser ? -1 : REASON_USER;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -14,23 +14,17 @@ import org.briarproject.bramble.api.settings.Settings;
|
|||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.net.Inet4Address;
|
import java.net.Inet4Address;
|
||||||
import java.net.Inet6Address;
|
|
||||||
import java.net.InetAddress;
|
import java.net.InetAddress;
|
||||||
import java.net.InetSocketAddress;
|
import java.net.InetSocketAddress;
|
||||||
import java.net.InterfaceAddress;
|
|
||||||
import java.net.ServerSocket;
|
import java.net.ServerSocket;
|
||||||
import java.net.Socket;
|
import java.net.Socket;
|
||||||
import java.net.UnknownHostException;
|
import java.net.UnknownHostException;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.Deque;
|
import java.util.Comparator;
|
||||||
import java.util.LinkedList;
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.concurrent.Executor;
|
import java.util.concurrent.Executor;
|
||||||
import java.util.logging.Logger;
|
import java.util.logging.Logger;
|
||||||
|
|
||||||
import javax.annotation.Nullable;
|
|
||||||
|
|
||||||
import static java.lang.Integer.parseInt;
|
|
||||||
import static java.util.Collections.addAll;
|
import static java.util.Collections.addAll;
|
||||||
import static java.util.Collections.emptyList;
|
import static java.util.Collections.emptyList;
|
||||||
import static java.util.Collections.sort;
|
import static java.util.Collections.sort;
|
||||||
@@ -39,58 +33,28 @@ import static java.util.logging.Level.WARNING;
|
|||||||
import static java.util.logging.Logger.getLogger;
|
import static java.util.logging.Logger.getLogger;
|
||||||
import static org.briarproject.bramble.api.keyagreement.KeyAgreementConstants.TRANSPORT_ID_LAN;
|
import static org.briarproject.bramble.api.keyagreement.KeyAgreementConstants.TRANSPORT_ID_LAN;
|
||||||
import static org.briarproject.bramble.api.plugin.LanTcpConstants.ID;
|
import static org.briarproject.bramble.api.plugin.LanTcpConstants.ID;
|
||||||
import static org.briarproject.bramble.api.plugin.LanTcpConstants.PREF_IPV6;
|
|
||||||
import static org.briarproject.bramble.api.plugin.LanTcpConstants.PREF_LAN_IP_PORTS;
|
import static org.briarproject.bramble.api.plugin.LanTcpConstants.PREF_LAN_IP_PORTS;
|
||||||
import static org.briarproject.bramble.api.plugin.LanTcpConstants.PROP_IPV6;
|
|
||||||
import static org.briarproject.bramble.api.plugin.LanTcpConstants.PROP_IP_PORTS;
|
import static org.briarproject.bramble.api.plugin.LanTcpConstants.PROP_IP_PORTS;
|
||||||
import static org.briarproject.bramble.api.plugin.LanTcpConstants.PROP_PORT;
|
|
||||||
import static org.briarproject.bramble.api.properties.TransportPropertyConstants.MAX_PROPERTY_LENGTH;
|
|
||||||
import static org.briarproject.bramble.util.ByteUtils.MAX_16_BIT_UNSIGNED;
|
import static org.briarproject.bramble.util.ByteUtils.MAX_16_BIT_UNSIGNED;
|
||||||
import static org.briarproject.bramble.util.IoUtils.tryToClose;
|
import static org.briarproject.bramble.util.IoUtils.tryToClose;
|
||||||
import static org.briarproject.bramble.util.PrivacyUtils.scrubSocketAddress;
|
import static org.briarproject.bramble.util.PrivacyUtils.scrubSocketAddress;
|
||||||
import static org.briarproject.bramble.util.StringUtils.fromHexString;
|
|
||||||
import static org.briarproject.bramble.util.StringUtils.isNullOrEmpty;
|
import static org.briarproject.bramble.util.StringUtils.isNullOrEmpty;
|
||||||
import static org.briarproject.bramble.util.StringUtils.join;
|
import static org.briarproject.bramble.util.StringUtils.join;
|
||||||
import static org.briarproject.bramble.util.StringUtils.toHexString;
|
|
||||||
import static org.briarproject.bramble.util.StringUtils.utf8IsTooLong;
|
|
||||||
|
|
||||||
@NotNullByDefault
|
@NotNullByDefault
|
||||||
class LanTcpPlugin extends TcpPlugin {
|
class LanTcpPlugin extends TcpPlugin {
|
||||||
|
|
||||||
private static final Logger LOG = getLogger(LanTcpPlugin.class.getName());
|
private static final Logger LOG = getLogger(LanTcpPlugin.class.getName());
|
||||||
|
|
||||||
|
private static final LanAddressComparator ADDRESS_COMPARATOR =
|
||||||
|
new LanAddressComparator();
|
||||||
|
|
||||||
|
private static final int MAX_ADDRESSES = 4;
|
||||||
private static final String SEPARATOR = ",";
|
private static final String SEPARATOR = ",";
|
||||||
|
|
||||||
/**
|
|
||||||
* The IP address of an Android device providing a wifi access point.
|
|
||||||
* <p>
|
|
||||||
* Most devices use this address, but at least one device (Honor 8A) may
|
|
||||||
* use other addresses in the range 192.168.43.0/24.
|
|
||||||
*/
|
|
||||||
private static final InetAddress WIFI_AP_ADDRESS;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* The IP address of an Android device providing a wifi direct
|
|
||||||
* legacy mode access point.
|
|
||||||
*/
|
|
||||||
private static final InetAddress WIFI_DIRECT_AP_ADDRESS;
|
|
||||||
|
|
||||||
static {
|
|
||||||
try {
|
|
||||||
WIFI_AP_ADDRESS = InetAddress.getByAddress(
|
|
||||||
new byte[] {(byte) 192, (byte) 168, 43, 1});
|
|
||||||
WIFI_DIRECT_AP_ADDRESS = InetAddress.getByAddress(
|
|
||||||
new byte[] {(byte) 192, (byte) 168, 49, 1});
|
|
||||||
} catch (UnknownHostException e) {
|
|
||||||
// Should only be thrown if the address has an illegal length
|
|
||||||
throw new AssertionError(e);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
LanTcpPlugin(Executor ioExecutor, Backoff backoff, PluginCallback callback,
|
LanTcpPlugin(Executor ioExecutor, Backoff backoff, PluginCallback callback,
|
||||||
int maxLatency, int maxIdleTime, int connectionTimeout) {
|
int maxLatency, int maxIdleTime) {
|
||||||
super(ioExecutor, backoff, callback, maxLatency, maxIdleTime,
|
super(ioExecutor, backoff, callback, maxLatency, maxIdleTime);
|
||||||
connectionTimeout);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@@ -99,228 +63,134 @@ class LanTcpPlugin extends TcpPlugin {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void start() {
|
protected List<InetSocketAddress> getLocalSocketAddresses() {
|
||||||
if (used.getAndSet(true)) throw new IllegalStateException();
|
// Use the same address and port as last time if available
|
||||||
initialisePortProperty();
|
|
||||||
Settings settings = callback.getSettings();
|
|
||||||
state.setStarted(settings.getBoolean(PREF_PLUGIN_ENABLE, false));
|
|
||||||
bind();
|
|
||||||
}
|
|
||||||
|
|
||||||
protected void initialisePortProperty() {
|
|
||||||
TransportProperties p = callback.getLocalProperties();
|
TransportProperties p = callback.getLocalProperties();
|
||||||
if (isNullOrEmpty(p.get(PROP_PORT))) {
|
|
||||||
int port = chooseEphemeralPort();
|
|
||||||
p.put(PROP_PORT, String.valueOf(port));
|
|
||||||
callback.mergeLocalProperties(p);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
protected List<InetSocketAddress> getLocalSocketAddresses(boolean ipv4) {
|
|
||||||
TransportProperties p = callback.getLocalProperties();
|
|
||||||
int preferredPort = parsePortProperty(p.get(PROP_PORT));
|
|
||||||
String oldIpPorts = p.get(PROP_IP_PORTS);
|
String oldIpPorts = p.get(PROP_IP_PORTS);
|
||||||
List<InetSocketAddress> olds = parseIpv4SocketAddresses(oldIpPorts);
|
List<InetSocketAddress> olds = parseSocketAddresses(oldIpPorts);
|
||||||
|
|
||||||
List<InetSocketAddress> locals = new ArrayList<>();
|
List<InetSocketAddress> locals = new ArrayList<>();
|
||||||
List<InetSocketAddress> fallbacks = new ArrayList<>();
|
for (InetAddress local : getLocalIpAddresses()) {
|
||||||
for (InetAddress local : getUsableLocalInetAddresses(ipv4)) {
|
if (isAcceptableAddress(local)) {
|
||||||
// If we've used this address before, try to use the same port
|
// If this is the old address, try to use the same port
|
||||||
int port = preferredPort;
|
for (InetSocketAddress old : olds) {
|
||||||
for (InetSocketAddress old : olds) {
|
if (old.getAddress().equals(local))
|
||||||
if (old.getAddress().equals(local)) {
|
locals.add(new InetSocketAddress(local, old.getPort()));
|
||||||
port = old.getPort();
|
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
|
locals.add(new InetSocketAddress(local, 0));
|
||||||
}
|
}
|
||||||
locals.add(new InetSocketAddress(local, port));
|
|
||||||
// Fall back to any available port
|
|
||||||
fallbacks.add(new InetSocketAddress(local, 0));
|
|
||||||
}
|
}
|
||||||
locals.addAll(fallbacks);
|
sort(locals, ADDRESS_COMPARATOR);
|
||||||
return locals;
|
return locals;
|
||||||
}
|
}
|
||||||
|
|
||||||
private int parsePortProperty(@Nullable String portProperty) {
|
private List<InetSocketAddress> parseSocketAddresses(String ipPorts) {
|
||||||
if (isNullOrEmpty(portProperty)) return 0;
|
if (isNullOrEmpty(ipPorts)) return emptyList();
|
||||||
try {
|
String[] split = ipPorts.split(SEPARATOR);
|
||||||
return parseInt(portProperty);
|
|
||||||
} catch (NumberFormatException e) {
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private List<InetSocketAddress> parseIpv4SocketAddresses(String ipPorts) {
|
|
||||||
List<InetSocketAddress> addresses = new ArrayList<>();
|
List<InetSocketAddress> addresses = new ArrayList<>();
|
||||||
if (isNullOrEmpty(ipPorts)) return addresses;
|
for (String ipPort : split) {
|
||||||
for (String ipPort : ipPorts.split(SEPARATOR)) {
|
InetSocketAddress a = parseSocketAddress(ipPort);
|
||||||
InetSocketAddress a = parseIpv4SocketAddress(ipPort);
|
|
||||||
if (a != null) addresses.add(a);
|
if (a != null) addresses.add(a);
|
||||||
}
|
}
|
||||||
return addresses;
|
return addresses;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected List<InetAddress> getUsableLocalInetAddresses(boolean ipv4) {
|
|
||||||
List<InterfaceAddress> ifAddrs =
|
|
||||||
new ArrayList<>(getLocalInterfaceAddresses());
|
|
||||||
// Prefer longer network prefixes
|
|
||||||
sort(ifAddrs, (a, b) ->
|
|
||||||
b.getNetworkPrefixLength() - a.getNetworkPrefixLength());
|
|
||||||
List<InetAddress> addrs = new ArrayList<>();
|
|
||||||
for (InterfaceAddress ifAddr : ifAddrs) {
|
|
||||||
InetAddress addr = ifAddr.getAddress();
|
|
||||||
if (isAcceptableAddress(addr, ipv4)) addrs.add(addr);
|
|
||||||
}
|
|
||||||
return addrs;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void setLocalSocketAddress(InetSocketAddress a, boolean ipv4) {
|
protected void setLocalSocketAddress(InetSocketAddress a) {
|
||||||
if (ipv4) setLocalIpv4SocketAddress(a);
|
|
||||||
else setLocalIpv6SocketAddress(a);
|
|
||||||
}
|
|
||||||
|
|
||||||
private void setLocalIpv4SocketAddress(InetSocketAddress a) {
|
|
||||||
String ipPort = getIpPortString(a);
|
String ipPort = getIpPortString(a);
|
||||||
updateRecentAddresses(PREF_LAN_IP_PORTS, PROP_IP_PORTS, ipPort);
|
|
||||||
}
|
|
||||||
|
|
||||||
private void setLocalIpv6SocketAddress(InetSocketAddress a) {
|
|
||||||
String hex = toHexString(a.getAddress().getAddress());
|
|
||||||
updateRecentAddresses(PREF_IPV6, PROP_IPV6, hex);
|
|
||||||
}
|
|
||||||
|
|
||||||
private void updateRecentAddresses(String settingKey, String propertyKey,
|
|
||||||
String item) {
|
|
||||||
// Get the list of recently used addresses
|
// Get the list of recently used addresses
|
||||||
String setting = callback.getSettings().get(settingKey);
|
String setting = callback.getSettings().get(PREF_LAN_IP_PORTS);
|
||||||
Deque<String> recent = new LinkedList<>();
|
List<String> recent = new ArrayList<>();
|
||||||
if (!isNullOrEmpty(setting)) {
|
if (!isNullOrEmpty(setting))
|
||||||
addAll(recent, setting.split(SEPARATOR));
|
addAll(recent, setting.split(SEPARATOR));
|
||||||
}
|
// Is the address already in the list?
|
||||||
if (recent.remove(item)) {
|
if (recent.remove(ipPort)) {
|
||||||
// Move the item to the start of the list
|
// Move the address to the start of the list
|
||||||
recent.addFirst(item);
|
recent.add(0, ipPort);
|
||||||
setting = join(recent, SEPARATOR);
|
setting = join(recent, SEPARATOR);
|
||||||
} else {
|
} else {
|
||||||
// Add the item to the start of the list
|
// Add the address to the start of the list
|
||||||
recent.addFirst(item);
|
recent.add(0, ipPort);
|
||||||
// Drop items from the end of the list if it's too long to encode
|
// Drop the least recently used address if the list is full
|
||||||
|
if (recent.size() > MAX_ADDRESSES)
|
||||||
|
recent = recent.subList(0, MAX_ADDRESSES);
|
||||||
setting = join(recent, SEPARATOR);
|
setting = join(recent, SEPARATOR);
|
||||||
while (utf8IsTooLong(setting, MAX_PROPERTY_LENGTH)) {
|
|
||||||
recent.removeLast();
|
|
||||||
setting = join(recent, SEPARATOR);
|
|
||||||
}
|
|
||||||
// Update the list of addresses shared with contacts
|
// Update the list of addresses shared with contacts
|
||||||
|
List<String> shared = new ArrayList<>(recent);
|
||||||
|
sort(shared);
|
||||||
|
String property = join(shared, SEPARATOR);
|
||||||
TransportProperties properties = new TransportProperties();
|
TransportProperties properties = new TransportProperties();
|
||||||
properties.put(propertyKey, setting);
|
properties.put(PROP_IP_PORTS, property);
|
||||||
callback.mergeLocalProperties(properties);
|
callback.mergeLocalProperties(properties);
|
||||||
}
|
}
|
||||||
// Save the setting
|
// Save the setting
|
||||||
Settings settings = new Settings();
|
Settings settings = new Settings();
|
||||||
settings.put(settingKey, setting);
|
settings.put(PREF_LAN_IP_PORTS, setting);
|
||||||
callback.mergeSettings(settings);
|
callback.mergeSettings(settings);
|
||||||
}
|
}
|
||||||
|
|
||||||
protected boolean isIpv6LinkLocalAddress(InetAddress a) {
|
|
||||||
return a instanceof Inet6Address && a.isLinkLocalAddress();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected List<InetSocketAddress> getRemoteSocketAddresses(
|
protected List<InetSocketAddress> getRemoteSocketAddresses(
|
||||||
TransportProperties p, boolean ipv4) {
|
|
||||||
if (ipv4) return getRemoteIpv4SocketAddresses(p);
|
|
||||||
else return getRemoteIpv6SocketAddresses(p);
|
|
||||||
}
|
|
||||||
|
|
||||||
private List<InetSocketAddress> getRemoteIpv4SocketAddresses(
|
|
||||||
TransportProperties p) {
|
TransportProperties p) {
|
||||||
String ipPorts = p.get(PROP_IP_PORTS);
|
return parseSocketAddresses(p.get(PROP_IP_PORTS));
|
||||||
List<InetSocketAddress> remotes = parseIpv4SocketAddresses(ipPorts);
|
|
||||||
int port = parsePortProperty(p.get(PROP_PORT));
|
|
||||||
// If the contact has a preferred port, we can guess their IP:port when
|
|
||||||
// they're providing a wifi access point
|
|
||||||
if (port != 0) {
|
|
||||||
InetSocketAddress wifiAp =
|
|
||||||
new InetSocketAddress(WIFI_AP_ADDRESS, port);
|
|
||||||
if (!remotes.contains(wifiAp)) remotes.add(wifiAp);
|
|
||||||
InetSocketAddress wifiDirectAp =
|
|
||||||
new InetSocketAddress(WIFI_DIRECT_AP_ADDRESS, port);
|
|
||||||
if (!remotes.contains(wifiDirectAp)) remotes.add(wifiDirectAp);
|
|
||||||
}
|
|
||||||
return remotes;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private List<InetSocketAddress> getRemoteIpv6SocketAddresses(
|
private boolean isAcceptableAddress(InetAddress a) {
|
||||||
TransportProperties p) {
|
// Accept link-local and site-local IPv4 addresses
|
||||||
List<InetAddress> addrs = parseIpv6Addresses(p.get(PROP_IPV6));
|
boolean ipv4 = a instanceof Inet4Address;
|
||||||
int port = parsePortProperty(p.get(PROP_PORT));
|
boolean loop = a.isLoopbackAddress();
|
||||||
if (addrs.isEmpty() || port == 0) return emptyList();
|
boolean link = a.isLinkLocalAddress();
|
||||||
List<InetSocketAddress> remotes = new ArrayList<>();
|
boolean site = a.isSiteLocalAddress();
|
||||||
for (InetAddress addr : addrs) {
|
return ipv4 && !loop && (link || site);
|
||||||
remotes.add(new InetSocketAddress(addr, port));
|
|
||||||
}
|
|
||||||
return remotes;
|
|
||||||
}
|
|
||||||
|
|
||||||
private List<InetAddress> parseIpv6Addresses(String property) {
|
|
||||||
if (isNullOrEmpty(property)) return emptyList();
|
|
||||||
try {
|
|
||||||
List<InetAddress> addrs = new ArrayList<>();
|
|
||||||
for (String hex : property.split(SEPARATOR)) {
|
|
||||||
byte[] ip = fromHexString(hex);
|
|
||||||
if (ip.length == 16) addrs.add(InetAddress.getByAddress(ip));
|
|
||||||
}
|
|
||||||
return addrs;
|
|
||||||
} catch (IllegalArgumentException | UnknownHostException e) {
|
|
||||||
return emptyList();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private boolean isAcceptableAddress(InetAddress a, boolean ipv4) {
|
|
||||||
if (ipv4) {
|
|
||||||
// Accept link-local and site-local IPv4 addresses
|
|
||||||
boolean isIpv4 = a instanceof Inet4Address;
|
|
||||||
boolean link = a.isLinkLocalAddress();
|
|
||||||
boolean site = a.isSiteLocalAddress();
|
|
||||||
return isIpv4 && (link || site);
|
|
||||||
} else {
|
|
||||||
// Accept link-local IPv6 addresses
|
|
||||||
return isIpv6LinkLocalAddress(a);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected boolean isConnectable(InterfaceAddress local,
|
protected boolean isConnectable(InetSocketAddress remote) {
|
||||||
InetSocketAddress remote) {
|
|
||||||
if (remote.getPort() == 0) return false;
|
if (remote.getPort() == 0) return false;
|
||||||
InetAddress remoteAddress = remote.getAddress();
|
if (!isAcceptableAddress(remote.getAddress())) return false;
|
||||||
boolean ipv4 = local.getAddress() instanceof Inet4Address;
|
|
||||||
if (!isAcceptableAddress(remoteAddress, ipv4)) return false;
|
|
||||||
// Try to determine whether the address is on the same LAN as us
|
// Try to determine whether the address is on the same LAN as us
|
||||||
byte[] localIp = local.getAddress().getAddress();
|
ServerSocket ss = state.getServerSocket();
|
||||||
|
if (ss == null) return false;
|
||||||
|
byte[] localIp = ss.getInetAddress().getAddress();
|
||||||
byte[] remoteIp = remote.getAddress().getAddress();
|
byte[] remoteIp = remote.getAddress().getAddress();
|
||||||
int prefixLength = local.getNetworkPrefixLength();
|
return addressesAreOnSameLan(localIp, remoteIp);
|
||||||
return areAddressesInSameNetwork(localIp, remoteIp, prefixLength);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Package access for testing
|
// Package access for testing
|
||||||
static boolean areAddressesInSameNetwork(byte[] localIp, byte[] remoteIp,
|
boolean addressesAreOnSameLan(byte[] localIp, byte[] remoteIp) {
|
||||||
int prefixLength) {
|
// 10.0.0.0/8
|
||||||
if (localIp.length != remoteIp.length) return false;
|
if (isPrefix10(localIp)) return isPrefix10(remoteIp);
|
||||||
// Compare the first prefixLength bits of the addresses
|
// 172.16.0.0/12
|
||||||
for (int i = 0; i < prefixLength; i++) {
|
if (isPrefix172(localIp)) return isPrefix172(remoteIp);
|
||||||
int byteIndex = i >> 3;
|
// 192.168.0.0/16
|
||||||
int bitIndex = i & 7; // 0 to 7
|
if (isPrefix192(localIp)) return isPrefix192(remoteIp);
|
||||||
int mask = 128 >> bitIndex; // Select the bit at bitIndex
|
// Unrecognised prefix - may be compatible
|
||||||
if ((localIp[byteIndex] & mask) != (remoteIp[byteIndex] & mask)) {
|
|
||||||
return false; // Addresses differ at bit i
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private static boolean isPrefix10(byte[] ipv4) {
|
||||||
|
return ipv4[0] == 10;
|
||||||
|
}
|
||||||
|
|
||||||
|
private static boolean isPrefix172(byte[] ipv4) {
|
||||||
|
return ipv4[0] == (byte) 172 && (ipv4[1] & 0xF0) == 16;
|
||||||
|
}
|
||||||
|
|
||||||
|
private static boolean isPrefix192(byte[] ipv4) {
|
||||||
|
return ipv4[0] == (byte) 192 && ipv4[1] == (byte) 168;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Returns the prefix length for an RFC 1918 address, or 0 for any other
|
||||||
|
// address
|
||||||
|
private static int getRfc1918PrefixLength(InetAddress addr) {
|
||||||
|
if (!(addr instanceof Inet4Address)) return 0;
|
||||||
|
if (!addr.isSiteLocalAddress()) return 0;
|
||||||
|
byte[] ipv4 = addr.getAddress();
|
||||||
|
if (isPrefix10(ipv4)) return 8;
|
||||||
|
if (isPrefix172(ipv4)) return 12;
|
||||||
|
if (isPrefix192(ipv4)) return 16;
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean supportsKeyAgreement() {
|
public boolean supportsKeyAgreement() {
|
||||||
return true;
|
return true;
|
||||||
@@ -355,23 +225,11 @@ class LanTcpPlugin extends TcpPlugin {
|
|||||||
return new LanKeyAgreementListener(descriptor, ss);
|
return new LanKeyAgreementListener(descriptor, ss);
|
||||||
}
|
}
|
||||||
|
|
||||||
private List<InetSocketAddress> getLocalSocketAddresses() {
|
|
||||||
List<InetSocketAddress> addrs = new ArrayList<>();
|
|
||||||
addrs.addAll(getLocalSocketAddresses(true));
|
|
||||||
addrs.addAll(getLocalSocketAddresses(false));
|
|
||||||
return addrs;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public DuplexTransportConnection createKeyAgreementConnection(
|
public DuplexTransportConnection createKeyAgreementConnection(
|
||||||
byte[] commitment, BdfList descriptor) {
|
byte[] commitment, BdfList descriptor) {
|
||||||
ServerSocket ss = state.getServerSocket(true);
|
ServerSocket ss = state.getServerSocket();
|
||||||
if (ss == null) return null;
|
if (ss == null) return null;
|
||||||
InterfaceAddress local = getLocalInterfaceAddress(ss.getInetAddress());
|
|
||||||
if (local == null) {
|
|
||||||
LOG.warning("No interface for key agreement server socket");
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
InetSocketAddress remote;
|
InetSocketAddress remote;
|
||||||
try {
|
try {
|
||||||
remote = parseSocketAddress(descriptor);
|
remote = parseSocketAddress(descriptor);
|
||||||
@@ -379,7 +237,7 @@ class LanTcpPlugin extends TcpPlugin {
|
|||||||
LOG.info("Invalid IP/port in key agreement descriptor");
|
LOG.info("Invalid IP/port in key agreement descriptor");
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
if (!isConnectable(local, remote)) {
|
if (!isConnectable(remote)) {
|
||||||
if (LOG.isLoggable(INFO)) {
|
if (LOG.isLoggable(INFO)) {
|
||||||
LOG.info(scrubSocketAddress(remote) +
|
LOG.info(scrubSocketAddress(remote) +
|
||||||
" is not connectable from " +
|
" is not connectable from " +
|
||||||
@@ -392,7 +250,7 @@ class LanTcpPlugin extends TcpPlugin {
|
|||||||
LOG.info("Connecting to " + scrubSocketAddress(remote));
|
LOG.info("Connecting to " + scrubSocketAddress(remote));
|
||||||
Socket s = createSocket();
|
Socket s = createSocket();
|
||||||
s.bind(new InetSocketAddress(ss.getInetAddress(), 0));
|
s.bind(new InetSocketAddress(ss.getInetAddress(), 0));
|
||||||
s.connect(remote, connectionTimeout);
|
s.connect(remote);
|
||||||
s.setSoTimeout(socketTimeout);
|
s.setSoTimeout(socketTimeout);
|
||||||
if (LOG.isLoggable(INFO))
|
if (LOG.isLoggable(INFO))
|
||||||
LOG.info("Connected to " + scrubSocketAddress(remote));
|
LOG.info("Connected to " + scrubSocketAddress(remote));
|
||||||
@@ -441,4 +299,19 @@ class LanTcpPlugin extends TcpPlugin {
|
|||||||
tryToClose(ss, LOG, WARNING);
|
tryToClose(ss, LOG, WARNING);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static class LanAddressComparator implements Comparator<InetSocketAddress> {
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int compare(InetSocketAddress a, InetSocketAddress b) {
|
||||||
|
// Prefer addresses with non-zero ports
|
||||||
|
int aPort = a.getPort(), bPort = b.getPort();
|
||||||
|
if (aPort > 0 && bPort == 0) return -1;
|
||||||
|
if (aPort == 0 && bPort > 0) return 1;
|
||||||
|
// Prefer addresses with longer RFC 1918 prefixes
|
||||||
|
int aPrefix = getRfc1918PrefixLength(a.getAddress());
|
||||||
|
int bPrefix = getRfc1918PrefixLength(b.getAddress());
|
||||||
|
return bPrefix - aPrefix;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -19,11 +19,10 @@ import static org.briarproject.bramble.api.plugin.LanTcpConstants.ID;
|
|||||||
@NotNullByDefault
|
@NotNullByDefault
|
||||||
public class LanTcpPluginFactory implements DuplexPluginFactory {
|
public class LanTcpPluginFactory implements DuplexPluginFactory {
|
||||||
|
|
||||||
private static final int MAX_LATENCY = 30_000; // 30 seconds
|
private static final int MAX_LATENCY = 30 * 1000; // 30 seconds
|
||||||
private static final int MAX_IDLE_TIME = 30_000; // 30 seconds
|
private static final int MAX_IDLE_TIME = 30 * 1000; // 30 seconds
|
||||||
private static final int CONNECTION_TIMEOUT = 3_000; // 3 seconds
|
private static final int MIN_POLLING_INTERVAL = 60 * 1000; // 1 minute
|
||||||
private static final int MIN_POLLING_INTERVAL = 60_000; // 1 minute
|
private static final int MAX_POLLING_INTERVAL = 10 * 60 * 1000; // 10 mins
|
||||||
private static final int MAX_POLLING_INTERVAL = 600_000; // 10 mins
|
|
||||||
private static final double BACKOFF_BASE = 1.2;
|
private static final double BACKOFF_BASE = 1.2;
|
||||||
|
|
||||||
private final Executor ioExecutor;
|
private final Executor ioExecutor;
|
||||||
@@ -51,8 +50,8 @@ public class LanTcpPluginFactory implements DuplexPluginFactory {
|
|||||||
public DuplexPlugin createPlugin(PluginCallback callback) {
|
public DuplexPlugin createPlugin(PluginCallback callback) {
|
||||||
Backoff backoff = backoffFactory.createBackoff(MIN_POLLING_INTERVAL,
|
Backoff backoff = backoffFactory.createBackoff(MIN_POLLING_INTERVAL,
|
||||||
MAX_POLLING_INTERVAL, BACKOFF_BASE);
|
MAX_POLLING_INTERVAL, BACKOFF_BASE);
|
||||||
LanTcpPlugin plugin = new LanTcpPlugin(ioExecutor, backoff, callback, MAX_LATENCY,
|
LanTcpPlugin plugin = new LanTcpPlugin(ioExecutor, backoff, callback,
|
||||||
MAX_IDLE_TIME, CONNECTION_TIMEOUT);
|
MAX_LATENCY, MAX_IDLE_TIME);
|
||||||
eventBus.addListener(plugin);
|
eventBus.addListener(plugin);
|
||||||
return plugin;
|
return plugin;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -54,13 +54,11 @@ class PortMapperImpl implements PortMapper {
|
|||||||
shutdownManager.addShutdownHook(() -> deleteMapping(port));
|
shutdownManager.addShutdownHook(() -> deleteMapping(port));
|
||||||
}
|
}
|
||||||
String externalString = gateway.getExternalIPAddress();
|
String externalString = gateway.getExternalIPAddress();
|
||||||
if (externalString == null) {
|
if (LOG.isLoggable(INFO))
|
||||||
LOG.info("External address not available");
|
LOG.info(
|
||||||
} else {
|
"External address " + scrubInetAddress(externalString));
|
||||||
|
if (externalString != null)
|
||||||
external = InetAddress.getByName(externalString);
|
external = InetAddress.getByName(externalString);
|
||||||
if (LOG.isLoggable(INFO))
|
|
||||||
LOG.info("External address " + scrubInetAddress(external));
|
|
||||||
}
|
|
||||||
} catch (IOException | SAXException e) {
|
} catch (IOException | SAXException e) {
|
||||||
logException(LOG, WARNING, e);
|
logException(LOG, WARNING, e);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -24,7 +24,6 @@ import org.briarproject.bramble.api.settings.event.SettingsUpdatedEvent;
|
|||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.net.InetAddress;
|
import java.net.InetAddress;
|
||||||
import java.net.InetSocketAddress;
|
import java.net.InetSocketAddress;
|
||||||
import java.net.InterfaceAddress;
|
|
||||||
import java.net.NetworkInterface;
|
import java.net.NetworkInterface;
|
||||||
import java.net.ServerSocket;
|
import java.net.ServerSocket;
|
||||||
import java.net.Socket;
|
import java.net.Socket;
|
||||||
@@ -43,6 +42,7 @@ import javax.annotation.Nullable;
|
|||||||
import javax.annotation.concurrent.GuardedBy;
|
import javax.annotation.concurrent.GuardedBy;
|
||||||
import javax.annotation.concurrent.ThreadSafe;
|
import javax.annotation.concurrent.ThreadSafe;
|
||||||
|
|
||||||
|
import static java.net.NetworkInterface.getNetworkInterfaces;
|
||||||
import static java.util.Collections.emptyList;
|
import static java.util.Collections.emptyList;
|
||||||
import static java.util.Collections.list;
|
import static java.util.Collections.list;
|
||||||
import static java.util.logging.Level.INFO;
|
import static java.util.logging.Level.INFO;
|
||||||
@@ -51,7 +51,6 @@ import static java.util.logging.Logger.getLogger;
|
|||||||
import static org.briarproject.bramble.api.plugin.Plugin.State.ACTIVE;
|
import static org.briarproject.bramble.api.plugin.Plugin.State.ACTIVE;
|
||||||
import static org.briarproject.bramble.api.plugin.Plugin.State.DISABLED;
|
import static org.briarproject.bramble.api.plugin.Plugin.State.DISABLED;
|
||||||
import static org.briarproject.bramble.api.plugin.Plugin.State.INACTIVE;
|
import static org.briarproject.bramble.api.plugin.Plugin.State.INACTIVE;
|
||||||
import static org.briarproject.bramble.api.plugin.Plugin.State.STARTING_STOPPING;
|
|
||||||
import static org.briarproject.bramble.util.IoUtils.tryToClose;
|
import static org.briarproject.bramble.util.IoUtils.tryToClose;
|
||||||
import static org.briarproject.bramble.util.LogUtils.logException;
|
import static org.briarproject.bramble.util.LogUtils.logException;
|
||||||
import static org.briarproject.bramble.util.PrivacyUtils.scrubSocketAddress;
|
import static org.briarproject.bramble.util.PrivacyUtils.scrubSocketAddress;
|
||||||
@@ -69,8 +68,7 @@ abstract class TcpPlugin implements DuplexPlugin, EventListener {
|
|||||||
protected final Executor ioExecutor, bindExecutor;
|
protected final Executor ioExecutor, bindExecutor;
|
||||||
protected final Backoff backoff;
|
protected final Backoff backoff;
|
||||||
protected final PluginCallback callback;
|
protected final PluginCallback callback;
|
||||||
protected final int maxLatency, maxIdleTime;
|
protected final int maxLatency, maxIdleTime, socketTimeout;
|
||||||
protected final int connectionTimeout, socketTimeout;
|
|
||||||
protected final AtomicBoolean used = new AtomicBoolean(false);
|
protected final AtomicBoolean used = new AtomicBoolean(false);
|
||||||
protected final PluginState state = new PluginState();
|
protected final PluginState state = new PluginState();
|
||||||
|
|
||||||
@@ -78,38 +76,34 @@ abstract class TcpPlugin implements DuplexPlugin, EventListener {
|
|||||||
* Returns zero or more socket addresses on which the plugin should listen,
|
* Returns zero or more socket addresses on which the plugin should listen,
|
||||||
* in order of preference. At most one of the addresses will be bound.
|
* in order of preference. At most one of the addresses will be bound.
|
||||||
*/
|
*/
|
||||||
protected abstract List<InetSocketAddress> getLocalSocketAddresses(
|
protected abstract List<InetSocketAddress> getLocalSocketAddresses();
|
||||||
boolean ipv4);
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds the address on which the plugin is listening to the transport
|
* Adds the address on which the plugin is listening to the transport
|
||||||
* properties.
|
* properties.
|
||||||
*/
|
*/
|
||||||
protected abstract void setLocalSocketAddress(InetSocketAddress a,
|
protected abstract void setLocalSocketAddress(InetSocketAddress a);
|
||||||
boolean ipv4);
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns zero or more socket addresses for connecting to a contact with
|
* Returns zero or more socket addresses for connecting to a contact with
|
||||||
* the given transport properties.
|
* the given transport properties.
|
||||||
*/
|
*/
|
||||||
protected abstract List<InetSocketAddress> getRemoteSocketAddresses(
|
protected abstract List<InetSocketAddress> getRemoteSocketAddresses(
|
||||||
TransportProperties p, boolean ipv4);
|
TransportProperties p);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns true if connections to the given address can be attempted.
|
* Returns true if connections to the given address can be attempted.
|
||||||
*/
|
*/
|
||||||
@SuppressWarnings("BooleanMethodIsAlwaysInverted")
|
@SuppressWarnings("BooleanMethodIsAlwaysInverted")
|
||||||
protected abstract boolean isConnectable(InterfaceAddress local,
|
protected abstract boolean isConnectable(InetSocketAddress remote);
|
||||||
InetSocketAddress remote);
|
|
||||||
|
|
||||||
TcpPlugin(Executor ioExecutor, Backoff backoff, PluginCallback callback,
|
TcpPlugin(Executor ioExecutor, Backoff backoff, PluginCallback callback,
|
||||||
int maxLatency, int maxIdleTime, int connectionTimeout) {
|
int maxLatency, int maxIdleTime) {
|
||||||
this.ioExecutor = ioExecutor;
|
this.ioExecutor = ioExecutor;
|
||||||
this.backoff = backoff;
|
this.backoff = backoff;
|
||||||
this.callback = callback;
|
this.callback = callback;
|
||||||
this.maxLatency = maxLatency;
|
this.maxLatency = maxLatency;
|
||||||
this.maxIdleTime = maxIdleTime;
|
this.maxIdleTime = maxIdleTime;
|
||||||
this.connectionTimeout = connectionTimeout;
|
|
||||||
if (maxIdleTime > Integer.MAX_VALUE / 2)
|
if (maxIdleTime > Integer.MAX_VALUE / 2)
|
||||||
socketTimeout = Integer.MAX_VALUE;
|
socketTimeout = Integer.MAX_VALUE;
|
||||||
else socketTimeout = maxIdleTime * 2;
|
else socketTimeout = maxIdleTime * 2;
|
||||||
@@ -138,41 +132,35 @@ abstract class TcpPlugin implements DuplexPlugin, EventListener {
|
|||||||
protected void bind() {
|
protected void bind() {
|
||||||
bindExecutor.execute(() -> {
|
bindExecutor.execute(() -> {
|
||||||
if (getState() != INACTIVE) return;
|
if (getState() != INACTIVE) return;
|
||||||
bind(true);
|
ServerSocket ss = null;
|
||||||
bind(false);
|
for (InetSocketAddress addr : getLocalSocketAddresses()) {
|
||||||
});
|
try {
|
||||||
}
|
ss = new ServerSocket();
|
||||||
|
ss.bind(addr);
|
||||||
private void bind(boolean ipv4) {
|
break;
|
||||||
ServerSocket ss = null;
|
} catch (IOException e) {
|
||||||
for (InetSocketAddress addr : getLocalSocketAddresses(ipv4)) {
|
if (LOG.isLoggable(INFO))
|
||||||
try {
|
LOG.info("Failed to bind " + scrubSocketAddress(addr));
|
||||||
ss = new ServerSocket();
|
tryToClose(ss, LOG, WARNING);
|
||||||
ss.bind(addr);
|
}
|
||||||
break;
|
|
||||||
} catch (IOException e) {
|
|
||||||
if (LOG.isLoggable(INFO))
|
|
||||||
LOG.info("Failed to bind " + scrubSocketAddress(addr));
|
|
||||||
tryToClose(ss, LOG, WARNING);
|
|
||||||
}
|
}
|
||||||
}
|
if (ss == null) {
|
||||||
if (ss == null) {
|
LOG.info("Could not bind server socket");
|
||||||
LOG.info("Could not bind server socket");
|
return;
|
||||||
return;
|
}
|
||||||
}
|
if (!state.setServerSocket(ss)) {
|
||||||
if (!state.setServerSocket(ss, ipv4)) {
|
LOG.info("Closing redundant server socket");
|
||||||
LOG.info("Closing redundant server socket");
|
tryToClose(ss, LOG, WARNING);
|
||||||
tryToClose(ss, LOG, WARNING);
|
return;
|
||||||
return;
|
}
|
||||||
}
|
backoff.reset();
|
||||||
backoff.reset();
|
InetSocketAddress local =
|
||||||
InetSocketAddress local =
|
(InetSocketAddress) ss.getLocalSocketAddress();
|
||||||
(InetSocketAddress) ss.getLocalSocketAddress();
|
setLocalSocketAddress(local);
|
||||||
setLocalSocketAddress(local, ipv4);
|
if (LOG.isLoggable(INFO))
|
||||||
if (LOG.isLoggable(INFO))
|
LOG.info("Listening on " + scrubSocketAddress(local));
|
||||||
LOG.info("Listening on " + scrubSocketAddress(local));
|
acceptContactConnections(ss);
|
||||||
ServerSocket finalSocket = ss;
|
});
|
||||||
ioExecutor.execute(() -> acceptContactConnections(finalSocket, ipv4));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
String getIpPortString(InetSocketAddress a) {
|
String getIpPortString(InetSocketAddress a) {
|
||||||
@@ -182,7 +170,7 @@ abstract class TcpPlugin implements DuplexPlugin, EventListener {
|
|||||||
return addr + ":" + a.getPort();
|
return addr + ":" + a.getPort();
|
||||||
}
|
}
|
||||||
|
|
||||||
private void acceptContactConnections(ServerSocket ss, boolean ipv4) {
|
private void acceptContactConnections(ServerSocket ss) {
|
||||||
while (true) {
|
while (true) {
|
||||||
Socket s;
|
Socket s;
|
||||||
try {
|
try {
|
||||||
@@ -191,13 +179,12 @@ abstract class TcpPlugin implements DuplexPlugin, EventListener {
|
|||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
// This is expected when the server socket is closed
|
// This is expected when the server socket is closed
|
||||||
LOG.info("Server socket closed");
|
LOG.info("Server socket closed");
|
||||||
state.clearServerSocket(ss, ipv4);
|
state.clearServerSocket(ss);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (LOG.isLoggable(INFO)) {
|
if (LOG.isLoggable(INFO))
|
||||||
LOG.info("Connection from " +
|
LOG.info("Connection from " +
|
||||||
scrubSocketAddress(s.getRemoteSocketAddress()));
|
scrubSocketAddress(s.getRemoteSocketAddress()));
|
||||||
}
|
|
||||||
backoff.reset();
|
backoff.reset();
|
||||||
callback.handleConnection(new TcpTransportConnection(this, s));
|
callback.handleConnection(new TcpTransportConnection(this, s));
|
||||||
}
|
}
|
||||||
@@ -205,7 +192,8 @@ abstract class TcpPlugin implements DuplexPlugin, EventListener {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void stop() {
|
public void stop() {
|
||||||
for (ServerSocket ss : state.setStopped()) tryToClose(ss, LOG, WARNING);
|
ServerSocket ss = state.setStopped();
|
||||||
|
tryToClose(ss, LOG, WARNING);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@@ -214,8 +202,8 @@ abstract class TcpPlugin implements DuplexPlugin, EventListener {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int getReasonsDisabled() {
|
public int getReasonDisabled() {
|
||||||
return state.getReasonsDisabled();
|
return state.getReasonDisabled();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@@ -250,28 +238,10 @@ abstract class TcpPlugin implements DuplexPlugin, EventListener {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public DuplexTransportConnection createConnection(TransportProperties p) {
|
public DuplexTransportConnection createConnection(TransportProperties p) {
|
||||||
DuplexTransportConnection c = createConnection(p, true);
|
ServerSocket ss = state.getServerSocket();
|
||||||
if (c != null) return c;
|
|
||||||
return createConnection(p, false);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Nullable
|
|
||||||
private DuplexTransportConnection createConnection(TransportProperties p,
|
|
||||||
boolean ipv4) {
|
|
||||||
ServerSocket ss = state.getServerSocket(ipv4);
|
|
||||||
if (ss == null) return null;
|
if (ss == null) return null;
|
||||||
InterfaceAddress local = getLocalInterfaceAddress(ss.getInetAddress());
|
for (InetSocketAddress remote : getRemoteSocketAddresses(p)) {
|
||||||
if (local == null) {
|
if (!isConnectable(remote)) {
|
||||||
LOG.warning("No interface for server socket");
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
for (InetSocketAddress remote : getRemoteSocketAddresses(p, ipv4)) {
|
|
||||||
// Don't try to connect to our own address
|
|
||||||
if (!canConnectToOwnAddress() &&
|
|
||||||
remote.getAddress().equals(ss.getInetAddress())) {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
if (!isConnectable(local, remote)) {
|
|
||||||
if (LOG.isLoggable(INFO)) {
|
if (LOG.isLoggable(INFO)) {
|
||||||
LOG.info(scrubSocketAddress(remote) +
|
LOG.info(scrubSocketAddress(remote) +
|
||||||
" is not connectable from " +
|
" is not connectable from " +
|
||||||
@@ -284,44 +254,26 @@ abstract class TcpPlugin implements DuplexPlugin, EventListener {
|
|||||||
LOG.info("Connecting to " + scrubSocketAddress(remote));
|
LOG.info("Connecting to " + scrubSocketAddress(remote));
|
||||||
Socket s = createSocket();
|
Socket s = createSocket();
|
||||||
s.bind(new InetSocketAddress(ss.getInetAddress(), 0));
|
s.bind(new InetSocketAddress(ss.getInetAddress(), 0));
|
||||||
s.connect(remote, connectionTimeout);
|
s.connect(remote);
|
||||||
s.setSoTimeout(socketTimeout);
|
s.setSoTimeout(socketTimeout);
|
||||||
if (LOG.isLoggable(INFO))
|
if (LOG.isLoggable(INFO))
|
||||||
LOG.info("Connected to " + scrubSocketAddress(remote));
|
LOG.info("Connected to " + scrubSocketAddress(remote));
|
||||||
return new TcpTransportConnection(this, s);
|
return new TcpTransportConnection(this, s);
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
if (LOG.isLoggable(INFO)) {
|
if (LOG.isLoggable(INFO))
|
||||||
LOG.info("Could not connect to " +
|
LOG.info("Could not connect to " +
|
||||||
scrubSocketAddress(remote));
|
scrubSocketAddress(remote));
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Nullable
|
|
||||||
InterfaceAddress getLocalInterfaceAddress(InetAddress a) {
|
|
||||||
for (InterfaceAddress ifAddr : getLocalInterfaceAddresses()) {
|
|
||||||
if (ifAddr.getAddress().equals(a)) return ifAddr;
|
|
||||||
}
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Override for testing
|
|
||||||
protected boolean canConnectToOwnAddress() {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
protected Socket createSocket() throws IOException {
|
protected Socket createSocket() throws IOException {
|
||||||
return new Socket();
|
return new Socket();
|
||||||
}
|
}
|
||||||
|
|
||||||
int chooseEphemeralPort() {
|
|
||||||
return 32768 + (int) (Math.random() * 32768);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Nullable
|
@Nullable
|
||||||
InetSocketAddress parseIpv4SocketAddress(String ipPort) {
|
InetSocketAddress parseSocketAddress(String ipPort) {
|
||||||
if (isNullOrEmpty(ipPort)) return null;
|
if (isNullOrEmpty(ipPort)) return null;
|
||||||
String[] split = ipPort.split(":");
|
String[] split = ipPort.split(":");
|
||||||
if (split.length != 2) return null;
|
if (split.length != 2) return null;
|
||||||
@@ -332,7 +284,14 @@ abstract class TcpPlugin implements DuplexPlugin, EventListener {
|
|||||||
InetAddress a = InetAddress.getByName(addr);
|
InetAddress a = InetAddress.getByName(addr);
|
||||||
int p = Integer.parseInt(port);
|
int p = Integer.parseInt(port);
|
||||||
return new InetSocketAddress(a, p);
|
return new InetSocketAddress(a, p);
|
||||||
} catch (UnknownHostException | NumberFormatException e) {
|
} catch (UnknownHostException e) {
|
||||||
|
if (LOG.isLoggable(WARNING))
|
||||||
|
// not scrubbing to enable us to find the problem
|
||||||
|
LOG.warning("Invalid address: " + addr);
|
||||||
|
return null;
|
||||||
|
} catch (NumberFormatException e) {
|
||||||
|
if (LOG.isLoggable(WARNING))
|
||||||
|
LOG.warning("Invalid port: " + port);
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -364,27 +323,14 @@ abstract class TcpPlugin implements DuplexPlugin, EventListener {
|
|||||||
throw new UnsupportedOperationException();
|
throw new UnsupportedOperationException();
|
||||||
}
|
}
|
||||||
|
|
||||||
List<InterfaceAddress> getLocalInterfaceAddresses() {
|
Collection<InetAddress> getLocalIpAddresses() {
|
||||||
List<InterfaceAddress> addrs = new ArrayList<>();
|
|
||||||
for (NetworkInterface iface : getNetworkInterfaces()) {
|
|
||||||
addrs.addAll(iface.getInterfaceAddresses());
|
|
||||||
}
|
|
||||||
return addrs;
|
|
||||||
}
|
|
||||||
|
|
||||||
List<InetAddress> getLocalInetAddresses() {
|
|
||||||
List<InetAddress> addrs = new ArrayList<>();
|
|
||||||
for (NetworkInterface iface : getNetworkInterfaces()) {
|
|
||||||
addrs.addAll(list(iface.getInetAddresses()));
|
|
||||||
}
|
|
||||||
return addrs;
|
|
||||||
}
|
|
||||||
|
|
||||||
private List<NetworkInterface> getNetworkInterfaces() {
|
|
||||||
try {
|
try {
|
||||||
Enumeration<NetworkInterface> ifaces =
|
Enumeration<NetworkInterface> ifaces = getNetworkInterfaces();
|
||||||
NetworkInterface.getNetworkInterfaces();
|
if (ifaces == null) return emptyList();
|
||||||
return ifaces == null ? emptyList() : list(ifaces);
|
List<InetAddress> addrs = new ArrayList<>();
|
||||||
|
for (NetworkInterface iface : list(ifaces))
|
||||||
|
addrs.addAll(list(iface.getInetAddresses()));
|
||||||
|
return addrs;
|
||||||
} catch (SocketException e) {
|
} catch (SocketException e) {
|
||||||
logException(LOG, WARNING, e);
|
logException(LOG, WARNING, e);
|
||||||
return emptyList();
|
return emptyList();
|
||||||
@@ -403,13 +349,13 @@ abstract class TcpPlugin implements DuplexPlugin, EventListener {
|
|||||||
@IoExecutor
|
@IoExecutor
|
||||||
private void onSettingsUpdated(Settings settings) {
|
private void onSettingsUpdated(Settings settings) {
|
||||||
boolean enabledByUser = settings.getBoolean(PREF_PLUGIN_ENABLE, false);
|
boolean enabledByUser = settings.getBoolean(PREF_PLUGIN_ENABLE, false);
|
||||||
List<ServerSocket> toClose = state.setEnabledByUser(enabledByUser);
|
ServerSocket ss = state.setEnabledByUser(enabledByUser);
|
||||||
State s = getState();
|
State s = getState();
|
||||||
if (!toClose.isEmpty()) {
|
if (ss != null) {
|
||||||
LOG.info("Disabled by user, closing server sockets");
|
LOG.info("Disabled by user, closing server socket");
|
||||||
for (ServerSocket ss : toClose) tryToClose(ss, LOG, WARNING);
|
tryToClose(ss, LOG, WARNING);
|
||||||
} else if (s == INACTIVE) {
|
} else if (s == INACTIVE) {
|
||||||
LOG.info("Enabled by user, opening server sockets");
|
LOG.info("Enabled by user, opening server socket");
|
||||||
bind();
|
bind();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -423,7 +369,7 @@ abstract class TcpPlugin implements DuplexPlugin, EventListener {
|
|||||||
|
|
||||||
@GuardedBy("this")
|
@GuardedBy("this")
|
||||||
@Nullable
|
@Nullable
|
||||||
private ServerSocket serverSocketV4 = null, serverSocketV6 = null;
|
private ServerSocket serverSocket = null;
|
||||||
|
|
||||||
synchronized void setStarted(boolean enabledByUser) {
|
synchronized void setStarted(boolean enabledByUser) {
|
||||||
started = true;
|
started = true;
|
||||||
@@ -431,72 +377,52 @@ abstract class TcpPlugin implements DuplexPlugin, EventListener {
|
|||||||
callback.pluginStateChanged(getState());
|
callback.pluginStateChanged(getState());
|
||||||
}
|
}
|
||||||
|
|
||||||
synchronized List<ServerSocket> setStopped() {
|
@Nullable
|
||||||
|
synchronized ServerSocket setStopped() {
|
||||||
stopped = true;
|
stopped = true;
|
||||||
List<ServerSocket> toClose = clearServerSockets();
|
ServerSocket ss = serverSocket;
|
||||||
|
serverSocket = null;
|
||||||
callback.pluginStateChanged(getState());
|
callback.pluginStateChanged(getState());
|
||||||
return toClose;
|
return ss;
|
||||||
}
|
|
||||||
|
|
||||||
@GuardedBy("this")
|
|
||||||
private List<ServerSocket> clearServerSockets() {
|
|
||||||
List<ServerSocket> toClose = new ArrayList<>(2);
|
|
||||||
if (serverSocketV4 != null) {
|
|
||||||
toClose.add(serverSocketV4);
|
|
||||||
serverSocketV4 = null;
|
|
||||||
}
|
|
||||||
if (serverSocketV6 != null) {
|
|
||||||
toClose.add(serverSocketV6);
|
|
||||||
serverSocketV6 = null;
|
|
||||||
}
|
|
||||||
return toClose;
|
|
||||||
}
|
|
||||||
|
|
||||||
synchronized List<ServerSocket> setEnabledByUser(
|
|
||||||
boolean enabledByUser) {
|
|
||||||
this.enabledByUser = enabledByUser;
|
|
||||||
List<ServerSocket> toClose = enabledByUser
|
|
||||||
? emptyList() : clearServerSockets();
|
|
||||||
callback.pluginStateChanged(getState());
|
|
||||||
return toClose;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Nullable
|
@Nullable
|
||||||
synchronized ServerSocket getServerSocket(boolean ipv4) {
|
synchronized ServerSocket setEnabledByUser(boolean enabledByUser) {
|
||||||
return ipv4 ? serverSocketV4 : serverSocketV6;
|
this.enabledByUser = enabledByUser;
|
||||||
|
ServerSocket ss = null;
|
||||||
|
if (!enabledByUser) {
|
||||||
|
ss = serverSocket;
|
||||||
|
serverSocket = null;
|
||||||
|
}
|
||||||
|
callback.pluginStateChanged(getState());
|
||||||
|
return ss;
|
||||||
}
|
}
|
||||||
|
|
||||||
synchronized boolean setServerSocket(ServerSocket ss, boolean ipv4) {
|
@Nullable
|
||||||
if (stopped) return false;
|
synchronized ServerSocket getServerSocket() {
|
||||||
if (ipv4) {
|
return serverSocket;
|
||||||
if (serverSocketV4 != null) return false;
|
}
|
||||||
serverSocketV4 = ss;
|
|
||||||
} else {
|
synchronized boolean setServerSocket(ServerSocket ss) {
|
||||||
if (serverSocketV6 != null) return false;
|
if (stopped || serverSocket != null) return false;
|
||||||
serverSocketV6 = ss;
|
serverSocket = ss;
|
||||||
}
|
|
||||||
callback.pluginStateChanged(getState());
|
callback.pluginStateChanged(getState());
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
synchronized void clearServerSocket(ServerSocket ss, boolean ipv4) {
|
synchronized void clearServerSocket(ServerSocket ss) {
|
||||||
if (ipv4) {
|
if (serverSocket == ss) serverSocket = null;
|
||||||
if (serverSocketV4 == ss) serverSocketV4 = null;
|
|
||||||
} else {
|
|
||||||
if (serverSocketV6 == ss) serverSocketV6 = null;
|
|
||||||
}
|
|
||||||
callback.pluginStateChanged(getState());
|
callback.pluginStateChanged(getState());
|
||||||
}
|
}
|
||||||
|
|
||||||
synchronized State getState() {
|
synchronized State getState() {
|
||||||
if (!started || stopped) return STARTING_STOPPING;
|
if (!started || stopped || !enabledByUser) return DISABLED;
|
||||||
if (!enabledByUser) return DISABLED;
|
return serverSocket == null ? INACTIVE : ACTIVE;
|
||||||
if (serverSocketV4 != null || serverSocketV6 != null) return ACTIVE;
|
|
||||||
return INACTIVE;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
synchronized int getReasonsDisabled() {
|
synchronized int getReasonDisabled() {
|
||||||
return getState() == DISABLED ? REASON_USER : 0;
|
if (!started || stopped) return REASON_STARTING_STOPPING;
|
||||||
|
return enabledByUser ? -1 : REASON_USER;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,7 +10,6 @@ import org.briarproject.bramble.api.properties.TransportProperties;
|
|||||||
import java.net.Inet4Address;
|
import java.net.Inet4Address;
|
||||||
import java.net.InetAddress;
|
import java.net.InetAddress;
|
||||||
import java.net.InetSocketAddress;
|
import java.net.InetSocketAddress;
|
||||||
import java.net.InterfaceAddress;
|
|
||||||
import java.util.LinkedList;
|
import java.util.LinkedList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.concurrent.Executor;
|
import java.util.concurrent.Executor;
|
||||||
@@ -30,10 +29,8 @@ class WanTcpPlugin extends TcpPlugin {
|
|||||||
private volatile MappingResult mappingResult;
|
private volatile MappingResult mappingResult;
|
||||||
|
|
||||||
WanTcpPlugin(Executor ioExecutor, Backoff backoff, PortMapper portMapper,
|
WanTcpPlugin(Executor ioExecutor, Backoff backoff, PortMapper portMapper,
|
||||||
PluginCallback callback, int maxLatency, int maxIdleTime,
|
PluginCallback callback, int maxLatency, int maxIdleTime) {
|
||||||
int connectionTimeout) {
|
super(ioExecutor, backoff, callback, maxLatency, maxIdleTime);
|
||||||
super(ioExecutor, backoff, callback, maxLatency, maxIdleTime,
|
|
||||||
connectionTimeout);
|
|
||||||
this.portMapper = portMapper;
|
this.portMapper = portMapper;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -43,13 +40,12 @@ class WanTcpPlugin extends TcpPlugin {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected List<InetSocketAddress> getLocalSocketAddresses(boolean ipv4) {
|
protected List<InetSocketAddress> getLocalSocketAddresses() {
|
||||||
if (!ipv4) return emptyList();
|
|
||||||
// Use the same address and port as last time if available
|
// Use the same address and port as last time if available
|
||||||
TransportProperties p = callback.getLocalProperties();
|
TransportProperties p = callback.getLocalProperties();
|
||||||
InetSocketAddress old = parseIpv4SocketAddress(p.get(PROP_IP_PORT));
|
InetSocketAddress old = parseSocketAddress(p.get(PROP_IP_PORT));
|
||||||
List<InetSocketAddress> addrs = new LinkedList<>();
|
List<InetSocketAddress> addrs = new LinkedList<>();
|
||||||
for (InetAddress a : getLocalInetAddresses()) {
|
for (InetAddress a : getLocalIpAddresses()) {
|
||||||
if (isAcceptableAddress(a)) {
|
if (isAcceptableAddress(a)) {
|
||||||
// If this is the old address, try to use the same port
|
// If this is the old address, try to use the same port
|
||||||
if (old != null && old.getAddress().equals(a))
|
if (old != null && old.getAddress().equals(a))
|
||||||
@@ -77,25 +73,26 @@ class WanTcpPlugin extends TcpPlugin {
|
|||||||
return ipv4 && !loop && !link && !site;
|
return ipv4 && !loop && !link && !site;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private int chooseEphemeralPort() {
|
||||||
|
return 32768 + (int) (Math.random() * 32768);
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected List<InetSocketAddress> getRemoteSocketAddresses(
|
protected List<InetSocketAddress> getRemoteSocketAddresses(
|
||||||
TransportProperties p, boolean ipv4) {
|
TransportProperties p) {
|
||||||
if (!ipv4) return emptyList();
|
InetSocketAddress parsed = parseSocketAddress(p.get(PROP_IP_PORT));
|
||||||
InetSocketAddress parsed = parseIpv4SocketAddress(p.get(PROP_IP_PORT));
|
|
||||||
if (parsed == null) return emptyList();
|
if (parsed == null) return emptyList();
|
||||||
return singletonList(parsed);
|
return singletonList(parsed);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected boolean isConnectable(InterfaceAddress local,
|
protected boolean isConnectable(InetSocketAddress remote) {
|
||||||
InetSocketAddress remote) {
|
|
||||||
if (remote.getPort() == 0) return false;
|
if (remote.getPort() == 0) return false;
|
||||||
return isAcceptableAddress(remote.getAddress());
|
return isAcceptableAddress(remote.getAddress());
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void setLocalSocketAddress(InetSocketAddress a, boolean ipv4) {
|
protected void setLocalSocketAddress(InetSocketAddress a) {
|
||||||
if (!ipv4) throw new AssertionError();
|
|
||||||
if (mappingResult != null && mappingResult.isUsable()) {
|
if (mappingResult != null && mappingResult.isUsable()) {
|
||||||
// Advertise the external address to contacts
|
// Advertise the external address to contacts
|
||||||
if (a.equals(mappingResult.getInternal())) {
|
if (a.equals(mappingResult.getInternal())) {
|
||||||
|
|||||||
@@ -20,11 +20,10 @@ import static org.briarproject.bramble.api.plugin.WanTcpConstants.ID;
|
|||||||
@NotNullByDefault
|
@NotNullByDefault
|
||||||
public class WanTcpPluginFactory implements DuplexPluginFactory {
|
public class WanTcpPluginFactory implements DuplexPluginFactory {
|
||||||
|
|
||||||
private static final int MAX_LATENCY = 30_000; // 30 seconds
|
private static final int MAX_LATENCY = 30 * 1000; // 30 seconds
|
||||||
private static final int MAX_IDLE_TIME = 30_000; // 30 seconds
|
private static final int MAX_IDLE_TIME = 30 * 1000; // 30 seconds
|
||||||
private static final int CONNECTION_TIMEOUT = 30_000; // 30 seconds
|
private static final int MIN_POLLING_INTERVAL = 60 * 1000; // 1 minute
|
||||||
private static final int MIN_POLLING_INTERVAL = 60_000; // 1 minute
|
private static final int MAX_POLLING_INTERVAL = 10 * 60 * 1000; // 10 mins
|
||||||
private static final int MAX_POLLING_INTERVAL = 600_000; // 10 mins
|
|
||||||
private static final double BACKOFF_BASE = 1.2;
|
private static final double BACKOFF_BASE = 1.2;
|
||||||
|
|
||||||
private final Executor ioExecutor;
|
private final Executor ioExecutor;
|
||||||
@@ -56,7 +55,7 @@ public class WanTcpPluginFactory implements DuplexPluginFactory {
|
|||||||
MAX_POLLING_INTERVAL, BACKOFF_BASE);
|
MAX_POLLING_INTERVAL, BACKOFF_BASE);
|
||||||
WanTcpPlugin plugin = new WanTcpPlugin(ioExecutor, backoff,
|
WanTcpPlugin plugin = new WanTcpPlugin(ioExecutor, backoff,
|
||||||
new PortMapperImpl(shutdownManager), callback, MAX_LATENCY,
|
new PortMapperImpl(shutdownManager), callback, MAX_LATENCY,
|
||||||
MAX_IDLE_TIME, CONNECTION_TIMEOUT);
|
MAX_IDLE_TIME);
|
||||||
eventBus.addListener(plugin);
|
eventBus.addListener(plugin);
|
||||||
return plugin;
|
return plugin;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -17,7 +17,7 @@ public interface CircumventionProvider {
|
|||||||
String[] BLOCKED = {"CN", "IR", "EG", "BY", "TR", "SY", "VE"};
|
String[] BLOCKED = {"CN", "IR", "EG", "BY", "TR", "SY", "VE"};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Countries where obfs4 or meek bridge connections are likely to work.
|
* Countries where obfs4 bridge connection are likely to work.
|
||||||
* Should be a subset of {@link #BLOCKED}.
|
* Should be a subset of {@link #BLOCKED}.
|
||||||
*/
|
*/
|
||||||
String[] BRIDGES = { "CN", "IR", "EG", "BY", "TR", "SY", "VE" };
|
String[] BRIDGES = { "CN", "IR", "EG", "BY", "TR", "SY", "VE" };
|
||||||
|
|||||||
@@ -73,7 +73,6 @@ import static org.briarproject.bramble.api.plugin.Plugin.State.ACTIVE;
|
|||||||
import static org.briarproject.bramble.api.plugin.Plugin.State.DISABLED;
|
import static org.briarproject.bramble.api.plugin.Plugin.State.DISABLED;
|
||||||
import static org.briarproject.bramble.api.plugin.Plugin.State.ENABLING;
|
import static org.briarproject.bramble.api.plugin.Plugin.State.ENABLING;
|
||||||
import static org.briarproject.bramble.api.plugin.Plugin.State.INACTIVE;
|
import static org.briarproject.bramble.api.plugin.Plugin.State.INACTIVE;
|
||||||
import static org.briarproject.bramble.api.plugin.Plugin.State.STARTING_STOPPING;
|
|
||||||
import static org.briarproject.bramble.api.plugin.TorConstants.CONTROL_PORT;
|
import static org.briarproject.bramble.api.plugin.TorConstants.CONTROL_PORT;
|
||||||
import static org.briarproject.bramble.api.plugin.TorConstants.ID;
|
import static org.briarproject.bramble.api.plugin.TorConstants.ID;
|
||||||
import static org.briarproject.bramble.api.plugin.TorConstants.PREF_TOR_MOBILE;
|
import static org.briarproject.bramble.api.plugin.TorConstants.PREF_TOR_MOBILE;
|
||||||
@@ -192,6 +191,7 @@ abstract class TorPlugin implements DuplexPlugin, EventHandler, EventListener {
|
|||||||
@Override
|
@Override
|
||||||
public void start() throws PluginException {
|
public void start() throws PluginException {
|
||||||
if (used.getAndSet(true)) throw new IllegalStateException();
|
if (used.getAndSet(true)) throw new IllegalStateException();
|
||||||
|
state.setStarted();
|
||||||
if (!torDirectory.exists()) {
|
if (!torDirectory.exists()) {
|
||||||
if (!torDirectory.mkdirs()) {
|
if (!torDirectory.mkdirs()) {
|
||||||
LOG.warning("Could not create Tor directory.");
|
LOG.warning("Could not create Tor directory.");
|
||||||
@@ -279,7 +279,7 @@ abstract class TorPlugin implements DuplexPlugin, EventHandler, EventListener {
|
|||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
throw new PluginException(e);
|
throw new PluginException(e);
|
||||||
}
|
}
|
||||||
state.setStarted();
|
state.setTorStarted();
|
||||||
// Check whether we're online
|
// Check whether we're online
|
||||||
updateConnectionStatus(networkManager.getNetworkStatus(),
|
updateConnectionStatus(networkManager.getNetworkStatus(),
|
||||||
batteryManager.isCharging());
|
batteryManager.isCharging());
|
||||||
@@ -287,7 +287,7 @@ abstract class TorPlugin implements DuplexPlugin, EventHandler, EventListener {
|
|||||||
bind();
|
bind();
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO: Remove after a reasonable migration period (added 2020-06-25)
|
// TODO: Remove after a reasonable migration period (added 2020-01-16)
|
||||||
private Settings migrateSettings(Settings settings) {
|
private Settings migrateSettings(Settings settings) {
|
||||||
int network = settings.getInt(PREF_TOR_NETWORK,
|
int network = settings.getInt(PREF_TOR_NETWORK,
|
||||||
PREF_TOR_NETWORK_AUTOMATIC);
|
PREF_TOR_NETWORK_AUTOMATIC);
|
||||||
@@ -534,8 +534,8 @@ abstract class TorPlugin implements DuplexPlugin, EventHandler, EventListener {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int getReasonsDisabled() {
|
public int getReasonDisabled() {
|
||||||
return state.getReasonsDisabled();
|
return state.getReasonDisabled();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@@ -774,8 +774,7 @@ abstract class TorPlugin implements DuplexPlugin, EventHandler, EventListener {
|
|||||||
String country = locationUtils.getCurrentCountry();
|
String country = locationUtils.getCurrentCountry();
|
||||||
boolean blocked =
|
boolean blocked =
|
||||||
circumventionProvider.isTorProbablyBlocked(country);
|
circumventionProvider.isTorProbablyBlocked(country);
|
||||||
boolean enabledByUser =
|
boolean enabledByUser = settings.getBoolean(PREF_PLUGIN_ENABLE, true);
|
||||||
settings.getBoolean(PREF_PLUGIN_ENABLE, true);
|
|
||||||
int network = settings.getInt(PREF_TOR_NETWORK,
|
int network = settings.getInt(PREF_TOR_NETWORK,
|
||||||
PREF_TOR_NETWORK_AUTOMATIC);
|
PREF_TOR_NETWORK_AUTOMATIC);
|
||||||
boolean useMobile = settings.getBoolean(PREF_TOR_MOBILE, true);
|
boolean useMobile = settings.getBoolean(PREF_TOR_MOBILE, true);
|
||||||
@@ -791,58 +790,55 @@ abstract class TorPlugin implements DuplexPlugin, EventHandler, EventListener {
|
|||||||
LOG.info("Charging: " + charging);
|
LOG.info("Charging: " + charging);
|
||||||
}
|
}
|
||||||
|
|
||||||
int reasonsDisabled = 0;
|
|
||||||
boolean enableNetwork = false, enableBridges = false;
|
boolean enableNetwork = false, enableBridges = false;
|
||||||
boolean useMeek = false, enableConnectionPadding = false;
|
boolean useMeek = false, enableConnectionPadding = false;
|
||||||
|
boolean disabledBySettings = false;
|
||||||
|
int reasonDisabled = REASON_STARTING_STOPPING;
|
||||||
|
|
||||||
if (!online) {
|
if (!online) {
|
||||||
LOG.info("Disabling network, device is offline");
|
LOG.info("Disabling network, device is offline");
|
||||||
|
} else if (!enabledByUser) {
|
||||||
|
LOG.info("Disabling network, user has disabled Tor");
|
||||||
|
disabledBySettings = true;
|
||||||
|
reasonDisabled = REASON_USER;
|
||||||
|
} else if (!charging && onlyWhenCharging) {
|
||||||
|
LOG.info("Disabling network, device is on battery");
|
||||||
|
disabledBySettings = true;
|
||||||
|
reasonDisabled = REASON_BATTERY;
|
||||||
|
} else if (!useMobile && !wifi) {
|
||||||
|
LOG.info("Disabling network, device is using mobile data");
|
||||||
|
disabledBySettings = true;
|
||||||
|
reasonDisabled = REASON_MOBILE_DATA;
|
||||||
|
} else if (automatic && blocked && !bridgesWork) {
|
||||||
|
LOG.info("Disabling network, country is blocked");
|
||||||
|
disabledBySettings = true;
|
||||||
|
reasonDisabled = REASON_COUNTRY_BLOCKED;
|
||||||
} else {
|
} else {
|
||||||
if (!enabledByUser) {
|
LOG.info("Enabling network");
|
||||||
LOG.info("User has disabled Tor");
|
enableNetwork = true;
|
||||||
reasonsDisabled |= REASON_USER;
|
if (network == PREF_TOR_NETWORK_WITH_BRIDGES ||
|
||||||
}
|
(automatic && bridgesWork)) {
|
||||||
if (!charging && onlyWhenCharging) {
|
if (circumventionProvider.needsMeek(country)) {
|
||||||
LOG.info("Configured not to use battery");
|
LOG.info("Using meek bridges");
|
||||||
reasonsDisabled |= REASON_BATTERY;
|
enableBridges = true;
|
||||||
}
|
useMeek = true;
|
||||||
if (!useMobile && !wifi) {
|
} else {
|
||||||
LOG.info("Configured not to use mobile data");
|
LOG.info("Using obfs4 bridges");
|
||||||
reasonsDisabled |= REASON_MOBILE_DATA;
|
enableBridges = true;
|
||||||
}
|
}
|
||||||
if (automatic && blocked && !bridgesWork) {
|
|
||||||
LOG.info("Country is blocked");
|
|
||||||
reasonsDisabled |= REASON_COUNTRY_BLOCKED;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (reasonsDisabled != 0) {
|
|
||||||
LOG.info("Disabling network due to settings");
|
|
||||||
} else {
|
} else {
|
||||||
LOG.info("Enabling network");
|
LOG.info("Not using bridges");
|
||||||
enableNetwork = true;
|
}
|
||||||
if (network == PREF_TOR_NETWORK_WITH_BRIDGES ||
|
if (wifi && charging) {
|
||||||
(automatic && bridgesWork)) {
|
LOG.info("Enabling connection padding");
|
||||||
if (circumventionProvider.needsMeek(country)) {
|
enableConnectionPadding = true;
|
||||||
LOG.info("Using meek bridges");
|
} else {
|
||||||
enableBridges = true;
|
LOG.info("Disabling connection padding");
|
||||||
useMeek = true;
|
|
||||||
} else {
|
|
||||||
LOG.info("Using obfs4 bridges");
|
|
||||||
enableBridges = true;
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
LOG.info("Not using bridges");
|
|
||||||
}
|
|
||||||
if (wifi && charging) {
|
|
||||||
LOG.info("Enabling connection padding");
|
|
||||||
enableConnectionPadding = true;
|
|
||||||
} else {
|
|
||||||
LOG.info("Disabling connection padding");
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
state.setReasonsDisabled(reasonsDisabled);
|
|
||||||
|
state.setDisabledBySettings(disabledBySettings, reasonDisabled);
|
||||||
|
|
||||||
try {
|
try {
|
||||||
if (enableNetwork) {
|
if (enableNetwork) {
|
||||||
@@ -867,14 +863,15 @@ abstract class TorPlugin implements DuplexPlugin, EventHandler, EventListener {
|
|||||||
@GuardedBy("this")
|
@GuardedBy("this")
|
||||||
private boolean started = false,
|
private boolean started = false,
|
||||||
stopped = false,
|
stopped = false,
|
||||||
|
torStarted = false,
|
||||||
networkInitialised = false,
|
networkInitialised = false,
|
||||||
networkEnabled = false,
|
networkEnabled = false,
|
||||||
bootstrapped = false,
|
bootstrapped = false,
|
||||||
circuitBuilt = false,
|
circuitBuilt = false,
|
||||||
settingsChecked = false;
|
disabledBySettings = false;
|
||||||
|
|
||||||
@GuardedBy("this")
|
@GuardedBy("this")
|
||||||
private int reasonsDisabled = 0;
|
private int reasonDisabled = REASON_STARTING_STOPPING;
|
||||||
|
|
||||||
@GuardedBy("this")
|
@GuardedBy("this")
|
||||||
@Nullable
|
@Nullable
|
||||||
@@ -885,8 +882,13 @@ abstract class TorPlugin implements DuplexPlugin, EventHandler, EventListener {
|
|||||||
callback.pluginStateChanged(getState());
|
callback.pluginStateChanged(getState());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Doesn't affect getState()
|
||||||
|
synchronized void setTorStarted() {
|
||||||
|
torStarted = true;
|
||||||
|
}
|
||||||
|
|
||||||
synchronized boolean isTorRunning() {
|
synchronized boolean isTorRunning() {
|
||||||
return started && !stopped;
|
return torStarted && !stopped;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Nullable
|
@Nullable
|
||||||
@@ -917,9 +919,10 @@ abstract class TorPlugin implements DuplexPlugin, EventHandler, EventListener {
|
|||||||
callback.pluginStateChanged(getState());
|
callback.pluginStateChanged(getState());
|
||||||
}
|
}
|
||||||
|
|
||||||
synchronized void setReasonsDisabled(int reasonsDisabled) {
|
synchronized void setDisabledBySettings(boolean disabledBySettings,
|
||||||
settingsChecked = true;
|
int reasonDisabled) {
|
||||||
this.reasonsDisabled = reasonsDisabled;
|
this.disabledBySettings = disabledBySettings;
|
||||||
|
this.reasonDisabled = reasonDisabled;
|
||||||
callback.pluginStateChanged(getState());
|
callback.pluginStateChanged(getState());
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -936,17 +939,14 @@ abstract class TorPlugin implements DuplexPlugin, EventHandler, EventListener {
|
|||||||
}
|
}
|
||||||
|
|
||||||
synchronized State getState() {
|
synchronized State getState() {
|
||||||
if (!started || stopped || !settingsChecked) {
|
if (!started || stopped || disabledBySettings) return DISABLED;
|
||||||
return STARTING_STOPPING;
|
|
||||||
}
|
|
||||||
if (reasonsDisabled != 0) return DISABLED;
|
|
||||||
if (!networkInitialised) return ENABLING;
|
if (!networkInitialised) return ENABLING;
|
||||||
if (!networkEnabled) return INACTIVE;
|
if (!networkEnabled) return INACTIVE;
|
||||||
return bootstrapped && circuitBuilt ? ACTIVE : ENABLING;
|
return bootstrapped && circuitBuilt ? ACTIVE : ENABLING;
|
||||||
}
|
}
|
||||||
|
|
||||||
synchronized int getReasonsDisabled() {
|
synchronized int getReasonDisabled() {
|
||||||
return getState() == DISABLED ? reasonsDisabled : 0;
|
return getState() == DISABLED ? reasonDisabled : -1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -37,11 +37,6 @@ import javax.annotation.Nullable;
|
|||||||
import javax.annotation.concurrent.Immutable;
|
import javax.annotation.concurrent.Immutable;
|
||||||
import javax.inject.Inject;
|
import javax.inject.Inject;
|
||||||
|
|
||||||
import static org.briarproject.bramble.api.properties.TransportPropertyConstants.GROUP_KEY_DISCOVERED;
|
|
||||||
import static org.briarproject.bramble.api.properties.TransportPropertyConstants.MSG_KEY_LOCAL;
|
|
||||||
import static org.briarproject.bramble.api.properties.TransportPropertyConstants.MSG_KEY_TRANSPORT_ID;
|
|
||||||
import static org.briarproject.bramble.api.properties.TransportPropertyConstants.MSG_KEY_VERSION;
|
|
||||||
|
|
||||||
@Immutable
|
@Immutable
|
||||||
@NotNullByDefault
|
@NotNullByDefault
|
||||||
class TransportPropertyManagerImpl implements TransportPropertyManager,
|
class TransportPropertyManagerImpl implements TransportPropertyManager,
|
||||||
@@ -116,10 +111,10 @@ class TransportPropertyManagerImpl implements TransportPropertyManager,
|
|||||||
try {
|
try {
|
||||||
// Find the latest update for this transport, if any
|
// Find the latest update for this transport, if any
|
||||||
BdfDictionary d = metadataParser.parse(meta);
|
BdfDictionary d = metadataParser.parse(meta);
|
||||||
TransportId t = new TransportId(d.getString(MSG_KEY_TRANSPORT_ID));
|
TransportId t = new TransportId(d.getString("transportId"));
|
||||||
LatestUpdate latest = findLatest(txn, m.getGroupId(), t, false);
|
LatestUpdate latest = findLatest(txn, m.getGroupId(), t, false);
|
||||||
if (latest != null) {
|
if (latest != null) {
|
||||||
if (d.getLong(MSG_KEY_VERSION) > latest.version) {
|
if (d.getLong("version") > latest.version) {
|
||||||
// This update is newer - delete the previous update
|
// This update is newer - delete the previous update
|
||||||
db.deleteMessage(txn, latest.messageId);
|
db.deleteMessage(txn, latest.messageId);
|
||||||
db.deleteMessageMetadata(txn, latest.messageId);
|
db.deleteMessageMetadata(txn, latest.messageId);
|
||||||
@@ -145,27 +140,6 @@ class TransportPropertyManagerImpl implements TransportPropertyManager,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
public void addRemotePropertiesFromConnection(ContactId c, TransportId t,
|
|
||||||
TransportProperties props) throws DbException {
|
|
||||||
if (props.isEmpty()) return;
|
|
||||||
try {
|
|
||||||
db.transaction(false, txn -> {
|
|
||||||
Group g = getContactGroup(db.getContact(txn, c));
|
|
||||||
BdfDictionary meta = clientHelper.getGroupMetadataAsDictionary(
|
|
||||||
txn, g.getId());
|
|
||||||
BdfDictionary discovered =
|
|
||||||
meta.getOptionalDictionary(GROUP_KEY_DISCOVERED);
|
|
||||||
if (discovered == null) discovered = new BdfDictionary();
|
|
||||||
discovered.putAll(props);
|
|
||||||
meta.put(GROUP_KEY_DISCOVERED, discovered);
|
|
||||||
clientHelper.mergeGroupMetadata(txn, g.getId(), meta);
|
|
||||||
});
|
|
||||||
} catch (FormatException e) {
|
|
||||||
throw new DbException(e);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Map<TransportId, TransportProperties> getLocalProperties()
|
public Map<TransportId, TransportProperties> getLocalProperties()
|
||||||
throws DbException {
|
throws DbException {
|
||||||
@@ -229,26 +203,12 @@ class TransportPropertyManagerImpl implements TransportPropertyManager,
|
|||||||
Group g = getContactGroup(c);
|
Group g = getContactGroup(c);
|
||||||
try {
|
try {
|
||||||
// Find the latest remote update
|
// Find the latest remote update
|
||||||
TransportProperties remote;
|
|
||||||
LatestUpdate latest = findLatest(txn, g.getId(), t, false);
|
LatestUpdate latest = findLatest(txn, g.getId(), t, false);
|
||||||
if (latest == null) {
|
if (latest == null) return new TransportProperties();
|
||||||
remote = new TransportProperties();
|
// Retrieve and parse the latest remote properties
|
||||||
} else {
|
BdfList message =
|
||||||
// Retrieve and parse the latest remote properties
|
clientHelper.getMessageAsList(txn, latest.messageId);
|
||||||
BdfList message =
|
return parseProperties(message);
|
||||||
clientHelper.getMessageAsList(txn, latest.messageId);
|
|
||||||
remote = parseProperties(message);
|
|
||||||
}
|
|
||||||
// Merge in any discovered properties
|
|
||||||
BdfDictionary meta =
|
|
||||||
clientHelper.getGroupMetadataAsDictionary(txn, g.getId());
|
|
||||||
BdfDictionary d = meta.getOptionalDictionary(GROUP_KEY_DISCOVERED);
|
|
||||||
if (d == null) return remote;
|
|
||||||
TransportProperties merged =
|
|
||||||
clientHelper.parseAndValidateTransportProperties(d);
|
|
||||||
// Received properties override discovered properties
|
|
||||||
merged.putAll(remote);
|
|
||||||
return merged;
|
|
||||||
} catch (FormatException e) {
|
} catch (FormatException e) {
|
||||||
throw new DbException(e);
|
throw new DbException(e);
|
||||||
}
|
}
|
||||||
@@ -321,9 +281,9 @@ class TransportPropertyManagerImpl implements TransportPropertyManager,
|
|||||||
long now = clock.currentTimeMillis();
|
long now = clock.currentTimeMillis();
|
||||||
Message m = clientHelper.createMessage(g, now, body);
|
Message m = clientHelper.createMessage(g, now, body);
|
||||||
BdfDictionary meta = new BdfDictionary();
|
BdfDictionary meta = new BdfDictionary();
|
||||||
meta.put(MSG_KEY_TRANSPORT_ID, t.getString());
|
meta.put("transportId", t.getString());
|
||||||
meta.put(MSG_KEY_VERSION, version);
|
meta.put("version", version);
|
||||||
meta.put(MSG_KEY_LOCAL, local);
|
meta.put("local", local);
|
||||||
clientHelper.addLocalMessage(txn, m, meta, shared, false);
|
clientHelper.addLocalMessage(txn, m, meta, shared, false);
|
||||||
} catch (FormatException e) {
|
} catch (FormatException e) {
|
||||||
throw new RuntimeException(e);
|
throw new RuntimeException(e);
|
||||||
@@ -342,9 +302,8 @@ class TransportPropertyManagerImpl implements TransportPropertyManager,
|
|||||||
.getMessageMetadataAsDictionary(txn, localGroup.getId());
|
.getMessageMetadataAsDictionary(txn, localGroup.getId());
|
||||||
for (Entry<MessageId, BdfDictionary> e : metadata.entrySet()) {
|
for (Entry<MessageId, BdfDictionary> e : metadata.entrySet()) {
|
||||||
BdfDictionary meta = e.getValue();
|
BdfDictionary meta = e.getValue();
|
||||||
TransportId t =
|
TransportId t = new TransportId(meta.getString("transportId"));
|
||||||
new TransportId(meta.getString(MSG_KEY_TRANSPORT_ID));
|
long version = meta.getLong("version");
|
||||||
long version = meta.getLong(MSG_KEY_VERSION);
|
|
||||||
latestUpdates.put(t, new LatestUpdate(e.getKey(), version));
|
latestUpdates.put(t, new LatestUpdate(e.getKey(), version));
|
||||||
}
|
}
|
||||||
return latestUpdates;
|
return latestUpdates;
|
||||||
@@ -357,10 +316,9 @@ class TransportPropertyManagerImpl implements TransportPropertyManager,
|
|||||||
clientHelper.getMessageMetadataAsDictionary(txn, g);
|
clientHelper.getMessageMetadataAsDictionary(txn, g);
|
||||||
for (Entry<MessageId, BdfDictionary> e : metadata.entrySet()) {
|
for (Entry<MessageId, BdfDictionary> e : metadata.entrySet()) {
|
||||||
BdfDictionary meta = e.getValue();
|
BdfDictionary meta = e.getValue();
|
||||||
if (meta.getString(MSG_KEY_TRANSPORT_ID).equals(t.getString())
|
if (meta.getString("transportId").equals(t.getString())
|
||||||
&& meta.getBoolean(MSG_KEY_LOCAL) == local) {
|
&& meta.getBoolean("local") == local) {
|
||||||
return new LatestUpdate(e.getKey(),
|
return new LatestUpdate(e.getKey(), meta.getLong("version"));
|
||||||
meta.getLong(MSG_KEY_VERSION));
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return null;
|
return null;
|
||||||
|
|||||||
@@ -2,7 +2,6 @@ package org.briarproject.bramble.rendezvous;
|
|||||||
|
|
||||||
import org.briarproject.bramble.PoliteExecutor;
|
import org.briarproject.bramble.PoliteExecutor;
|
||||||
import org.briarproject.bramble.api.Pair;
|
import org.briarproject.bramble.api.Pair;
|
||||||
import org.briarproject.bramble.api.connection.ConnectionManager;
|
|
||||||
import org.briarproject.bramble.api.contact.PendingContact;
|
import org.briarproject.bramble.api.contact.PendingContact;
|
||||||
import org.briarproject.bramble.api.contact.PendingContactId;
|
import org.briarproject.bramble.api.contact.PendingContactId;
|
||||||
import org.briarproject.bramble.api.contact.PendingContactState;
|
import org.briarproject.bramble.api.contact.PendingContactState;
|
||||||
@@ -24,6 +23,7 @@ import org.briarproject.bramble.api.lifecycle.Service;
|
|||||||
import org.briarproject.bramble.api.lifecycle.ServiceException;
|
import org.briarproject.bramble.api.lifecycle.ServiceException;
|
||||||
import org.briarproject.bramble.api.nullsafety.NotNullByDefault;
|
import org.briarproject.bramble.api.nullsafety.NotNullByDefault;
|
||||||
import org.briarproject.bramble.api.plugin.ConnectionHandler;
|
import org.briarproject.bramble.api.plugin.ConnectionHandler;
|
||||||
|
import org.briarproject.bramble.api.plugin.ConnectionManager;
|
||||||
import org.briarproject.bramble.api.plugin.Plugin;
|
import org.briarproject.bramble.api.plugin.Plugin;
|
||||||
import org.briarproject.bramble.api.plugin.PluginManager;
|
import org.briarproject.bramble.api.plugin.PluginManager;
|
||||||
import org.briarproject.bramble.api.plugin.TransportConnectionReader;
|
import org.briarproject.bramble.api.plugin.TransportConnectionReader;
|
||||||
|
|||||||
@@ -11,17 +11,13 @@ import org.briarproject.bramble.api.event.EventListener;
|
|||||||
import org.briarproject.bramble.api.lifecycle.IoExecutor;
|
import org.briarproject.bramble.api.lifecycle.IoExecutor;
|
||||||
import org.briarproject.bramble.api.lifecycle.event.LifecycleEvent;
|
import org.briarproject.bramble.api.lifecycle.event.LifecycleEvent;
|
||||||
import org.briarproject.bramble.api.nullsafety.NotNullByDefault;
|
import org.briarproject.bramble.api.nullsafety.NotNullByDefault;
|
||||||
import org.briarproject.bramble.api.plugin.TransportId;
|
|
||||||
import org.briarproject.bramble.api.plugin.event.TransportInactiveEvent;
|
|
||||||
import org.briarproject.bramble.api.sync.Ack;
|
import org.briarproject.bramble.api.sync.Ack;
|
||||||
import org.briarproject.bramble.api.sync.Message;
|
import org.briarproject.bramble.api.sync.Message;
|
||||||
import org.briarproject.bramble.api.sync.Offer;
|
import org.briarproject.bramble.api.sync.Offer;
|
||||||
import org.briarproject.bramble.api.sync.Priority;
|
|
||||||
import org.briarproject.bramble.api.sync.Request;
|
import org.briarproject.bramble.api.sync.Request;
|
||||||
import org.briarproject.bramble.api.sync.SyncRecordWriter;
|
import org.briarproject.bramble.api.sync.SyncRecordWriter;
|
||||||
import org.briarproject.bramble.api.sync.SyncSession;
|
import org.briarproject.bramble.api.sync.SyncSession;
|
||||||
import org.briarproject.bramble.api.sync.Versions;
|
import org.briarproject.bramble.api.sync.Versions;
|
||||||
import org.briarproject.bramble.api.sync.event.CloseSyncConnectionsEvent;
|
|
||||||
import org.briarproject.bramble.api.sync.event.GroupVisibilityUpdatedEvent;
|
import org.briarproject.bramble.api.sync.event.GroupVisibilityUpdatedEvent;
|
||||||
import org.briarproject.bramble.api.sync.event.MessageRequestedEvent;
|
import org.briarproject.bramble.api.sync.event.MessageRequestedEvent;
|
||||||
import org.briarproject.bramble.api.sync.event.MessageSharedEvent;
|
import org.briarproject.bramble.api.sync.event.MessageSharedEvent;
|
||||||
@@ -39,7 +35,6 @@ import java.util.concurrent.atomic.AtomicBoolean;
|
|||||||
import java.util.concurrent.atomic.AtomicLong;
|
import java.util.concurrent.atomic.AtomicLong;
|
||||||
import java.util.logging.Logger;
|
import java.util.logging.Logger;
|
||||||
|
|
||||||
import javax.annotation.Nullable;
|
|
||||||
import javax.annotation.concurrent.ThreadSafe;
|
import javax.annotation.concurrent.ThreadSafe;
|
||||||
|
|
||||||
import static java.util.concurrent.TimeUnit.MILLISECONDS;
|
import static java.util.concurrent.TimeUnit.MILLISECONDS;
|
||||||
@@ -76,12 +71,9 @@ class DuplexOutgoingSession implements SyncSession, EventListener {
|
|||||||
private final EventBus eventBus;
|
private final EventBus eventBus;
|
||||||
private final Clock clock;
|
private final Clock clock;
|
||||||
private final ContactId contactId;
|
private final ContactId contactId;
|
||||||
private final TransportId transportId;
|
|
||||||
private final int maxLatency, maxIdleTime;
|
private final int maxLatency, maxIdleTime;
|
||||||
private final StreamWriter streamWriter;
|
private final StreamWriter streamWriter;
|
||||||
private final SyncRecordWriter recordWriter;
|
private final SyncRecordWriter recordWriter;
|
||||||
@Nullable
|
|
||||||
private final Priority priority;
|
|
||||||
private final BlockingQueue<ThrowingRunnable<IOException>> writerTasks;
|
private final BlockingQueue<ThrowingRunnable<IOException>> writerTasks;
|
||||||
|
|
||||||
private final AtomicBoolean generateAckQueued = new AtomicBoolean(false);
|
private final AtomicBoolean generateAckQueued = new AtomicBoolean(false);
|
||||||
@@ -94,21 +86,18 @@ class DuplexOutgoingSession implements SyncSession, EventListener {
|
|||||||
private volatile boolean interrupted = false;
|
private volatile boolean interrupted = false;
|
||||||
|
|
||||||
DuplexOutgoingSession(DatabaseComponent db, Executor dbExecutor,
|
DuplexOutgoingSession(DatabaseComponent db, Executor dbExecutor,
|
||||||
EventBus eventBus, Clock clock, ContactId contactId,
|
EventBus eventBus, Clock clock, ContactId contactId, int maxLatency,
|
||||||
TransportId transportId, int maxLatency, int maxIdleTime,
|
int maxIdleTime, StreamWriter streamWriter,
|
||||||
StreamWriter streamWriter, SyncRecordWriter recordWriter,
|
SyncRecordWriter recordWriter) {
|
||||||
@Nullable Priority priority) {
|
|
||||||
this.db = db;
|
this.db = db;
|
||||||
this.dbExecutor = dbExecutor;
|
this.dbExecutor = dbExecutor;
|
||||||
this.eventBus = eventBus;
|
this.eventBus = eventBus;
|
||||||
this.clock = clock;
|
this.clock = clock;
|
||||||
this.contactId = contactId;
|
this.contactId = contactId;
|
||||||
this.transportId = transportId;
|
|
||||||
this.maxLatency = maxLatency;
|
this.maxLatency = maxLatency;
|
||||||
this.maxIdleTime = maxIdleTime;
|
this.maxIdleTime = maxIdleTime;
|
||||||
this.streamWriter = streamWriter;
|
this.streamWriter = streamWriter;
|
||||||
this.recordWriter = recordWriter;
|
this.recordWriter = recordWriter;
|
||||||
this.priority = priority;
|
|
||||||
writerTasks = new LinkedBlockingQueue<>();
|
writerTasks = new LinkedBlockingQueue<>();
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -119,8 +108,6 @@ class DuplexOutgoingSession implements SyncSession, EventListener {
|
|||||||
try {
|
try {
|
||||||
// Send our supported protocol versions
|
// Send our supported protocol versions
|
||||||
recordWriter.writeVersions(new Versions(SUPPORTED_VERSIONS));
|
recordWriter.writeVersions(new Versions(SUPPORTED_VERSIONS));
|
||||||
// Send our connection priority, if this is an outgoing connection
|
|
||||||
if (priority != null) recordWriter.writePriority(priority);
|
|
||||||
// Start a query for each type of record
|
// Start a query for each type of record
|
||||||
generateAck();
|
generateAck();
|
||||||
generateBatch();
|
generateBatch();
|
||||||
@@ -236,12 +223,6 @@ class DuplexOutgoingSession implements SyncSession, EventListener {
|
|||||||
} else if (e instanceof LifecycleEvent) {
|
} else if (e instanceof LifecycleEvent) {
|
||||||
LifecycleEvent l = (LifecycleEvent) e;
|
LifecycleEvent l = (LifecycleEvent) e;
|
||||||
if (l.getLifecycleState() == STOPPING) interrupt();
|
if (l.getLifecycleState() == STOPPING) interrupt();
|
||||||
} else if (e instanceof CloseSyncConnectionsEvent) {
|
|
||||||
CloseSyncConnectionsEvent c = (CloseSyncConnectionsEvent) e;
|
|
||||||
if (c.getTransportId().equals(transportId)) interrupt();
|
|
||||||
} else if (e instanceof TransportInactiveEvent) {
|
|
||||||
TransportInactiveEvent t = (TransportInactiveEvent) e;
|
|
||||||
if (t.getTransportId().equals(transportId)) interrupt();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -15,8 +15,6 @@ import org.briarproject.bramble.api.nullsafety.NotNullByDefault;
|
|||||||
import org.briarproject.bramble.api.sync.Ack;
|
import org.briarproject.bramble.api.sync.Ack;
|
||||||
import org.briarproject.bramble.api.sync.Message;
|
import org.briarproject.bramble.api.sync.Message;
|
||||||
import org.briarproject.bramble.api.sync.Offer;
|
import org.briarproject.bramble.api.sync.Offer;
|
||||||
import org.briarproject.bramble.api.sync.Priority;
|
|
||||||
import org.briarproject.bramble.api.sync.PriorityHandler;
|
|
||||||
import org.briarproject.bramble.api.sync.Request;
|
import org.briarproject.bramble.api.sync.Request;
|
||||||
import org.briarproject.bramble.api.sync.SyncRecordReader;
|
import org.briarproject.bramble.api.sync.SyncRecordReader;
|
||||||
import org.briarproject.bramble.api.sync.SyncSession;
|
import org.briarproject.bramble.api.sync.SyncSession;
|
||||||
@@ -49,19 +47,17 @@ class IncomingSession implements SyncSession, EventListener {
|
|||||||
private final EventBus eventBus;
|
private final EventBus eventBus;
|
||||||
private final ContactId contactId;
|
private final ContactId contactId;
|
||||||
private final SyncRecordReader recordReader;
|
private final SyncRecordReader recordReader;
|
||||||
private final PriorityHandler priorityHandler;
|
|
||||||
|
|
||||||
private volatile boolean interrupted = false;
|
private volatile boolean interrupted = false;
|
||||||
|
|
||||||
IncomingSession(DatabaseComponent db, Executor dbExecutor,
|
IncomingSession(DatabaseComponent db, Executor dbExecutor,
|
||||||
EventBus eventBus, ContactId contactId,
|
EventBus eventBus, ContactId contactId,
|
||||||
SyncRecordReader recordReader, PriorityHandler priorityHandler) {
|
SyncRecordReader recordReader) {
|
||||||
this.db = db;
|
this.db = db;
|
||||||
this.dbExecutor = dbExecutor;
|
this.dbExecutor = dbExecutor;
|
||||||
this.eventBus = eventBus;
|
this.eventBus = eventBus;
|
||||||
this.contactId = contactId;
|
this.contactId = contactId;
|
||||||
this.recordReader = recordReader;
|
this.recordReader = recordReader;
|
||||||
this.priorityHandler = priorityHandler;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@IoExecutor
|
@IoExecutor
|
||||||
@@ -90,9 +86,6 @@ class IncomingSession implements SyncSession, EventListener {
|
|||||||
} else if (recordReader.hasVersions()) {
|
} else if (recordReader.hasVersions()) {
|
||||||
Versions v = recordReader.readVersions();
|
Versions v = recordReader.readVersions();
|
||||||
dbExecutor.execute(new ReceiveVersions(v));
|
dbExecutor.execute(new ReceiveVersions(v));
|
||||||
} else if (recordReader.hasPriority()) {
|
|
||||||
Priority p = recordReader.readPriority();
|
|
||||||
priorityHandler.handle(p);
|
|
||||||
} else {
|
} else {
|
||||||
// unknown records are ignored in RecordReader#eof()
|
// unknown records are ignored in RecordReader#eof()
|
||||||
throw new FormatException();
|
throw new FormatException();
|
||||||
|
|||||||
@@ -11,14 +11,11 @@ import org.briarproject.bramble.api.event.EventListener;
|
|||||||
import org.briarproject.bramble.api.lifecycle.IoExecutor;
|
import org.briarproject.bramble.api.lifecycle.IoExecutor;
|
||||||
import org.briarproject.bramble.api.lifecycle.event.LifecycleEvent;
|
import org.briarproject.bramble.api.lifecycle.event.LifecycleEvent;
|
||||||
import org.briarproject.bramble.api.nullsafety.NotNullByDefault;
|
import org.briarproject.bramble.api.nullsafety.NotNullByDefault;
|
||||||
import org.briarproject.bramble.api.plugin.TransportId;
|
|
||||||
import org.briarproject.bramble.api.plugin.event.TransportInactiveEvent;
|
|
||||||
import org.briarproject.bramble.api.sync.Ack;
|
import org.briarproject.bramble.api.sync.Ack;
|
||||||
import org.briarproject.bramble.api.sync.Message;
|
import org.briarproject.bramble.api.sync.Message;
|
||||||
import org.briarproject.bramble.api.sync.SyncRecordWriter;
|
import org.briarproject.bramble.api.sync.SyncRecordWriter;
|
||||||
import org.briarproject.bramble.api.sync.SyncSession;
|
import org.briarproject.bramble.api.sync.SyncSession;
|
||||||
import org.briarproject.bramble.api.sync.Versions;
|
import org.briarproject.bramble.api.sync.Versions;
|
||||||
import org.briarproject.bramble.api.sync.event.CloseSyncConnectionsEvent;
|
|
||||||
import org.briarproject.bramble.api.transport.StreamWriter;
|
import org.briarproject.bramble.api.transport.StreamWriter;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
@@ -59,7 +56,6 @@ class SimplexOutgoingSession implements SyncSession, EventListener {
|
|||||||
private final Executor dbExecutor;
|
private final Executor dbExecutor;
|
||||||
private final EventBus eventBus;
|
private final EventBus eventBus;
|
||||||
private final ContactId contactId;
|
private final ContactId contactId;
|
||||||
private final TransportId transportId;
|
|
||||||
private final int maxLatency;
|
private final int maxLatency;
|
||||||
private final StreamWriter streamWriter;
|
private final StreamWriter streamWriter;
|
||||||
private final SyncRecordWriter recordWriter;
|
private final SyncRecordWriter recordWriter;
|
||||||
@@ -69,14 +65,12 @@ class SimplexOutgoingSession implements SyncSession, EventListener {
|
|||||||
private volatile boolean interrupted = false;
|
private volatile boolean interrupted = false;
|
||||||
|
|
||||||
SimplexOutgoingSession(DatabaseComponent db, Executor dbExecutor,
|
SimplexOutgoingSession(DatabaseComponent db, Executor dbExecutor,
|
||||||
EventBus eventBus, ContactId contactId, TransportId transportId,
|
EventBus eventBus, ContactId contactId, int maxLatency,
|
||||||
int maxLatency, StreamWriter streamWriter,
|
StreamWriter streamWriter, SyncRecordWriter recordWriter) {
|
||||||
SyncRecordWriter recordWriter) {
|
|
||||||
this.db = db;
|
this.db = db;
|
||||||
this.dbExecutor = dbExecutor;
|
this.dbExecutor = dbExecutor;
|
||||||
this.eventBus = eventBus;
|
this.eventBus = eventBus;
|
||||||
this.contactId = contactId;
|
this.contactId = contactId;
|
||||||
this.transportId = transportId;
|
|
||||||
this.maxLatency = maxLatency;
|
this.maxLatency = maxLatency;
|
||||||
this.streamWriter = streamWriter;
|
this.streamWriter = streamWriter;
|
||||||
this.recordWriter = recordWriter;
|
this.recordWriter = recordWriter;
|
||||||
@@ -129,12 +123,6 @@ class SimplexOutgoingSession implements SyncSession, EventListener {
|
|||||||
} else if (e instanceof LifecycleEvent) {
|
} else if (e instanceof LifecycleEvent) {
|
||||||
LifecycleEvent l = (LifecycleEvent) e;
|
LifecycleEvent l = (LifecycleEvent) e;
|
||||||
if (l.getLifecycleState() == STOPPING) interrupt();
|
if (l.getLifecycleState() == STOPPING) interrupt();
|
||||||
} else if (e instanceof CloseSyncConnectionsEvent) {
|
|
||||||
CloseSyncConnectionsEvent c = (CloseSyncConnectionsEvent) e;
|
|
||||||
if (c.getTransportId().equals(transportId)) interrupt();
|
|
||||||
} else if (e instanceof TransportInactiveEvent) {
|
|
||||||
TransportInactiveEvent t = (TransportInactiveEvent) e;
|
|
||||||
if (t.getTransportId().equals(transportId)) interrupt();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -11,7 +11,6 @@ import org.briarproject.bramble.api.sync.Message;
|
|||||||
import org.briarproject.bramble.api.sync.MessageFactory;
|
import org.briarproject.bramble.api.sync.MessageFactory;
|
||||||
import org.briarproject.bramble.api.sync.MessageId;
|
import org.briarproject.bramble.api.sync.MessageId;
|
||||||
import org.briarproject.bramble.api.sync.Offer;
|
import org.briarproject.bramble.api.sync.Offer;
|
||||||
import org.briarproject.bramble.api.sync.Priority;
|
|
||||||
import org.briarproject.bramble.api.sync.Request;
|
import org.briarproject.bramble.api.sync.Request;
|
||||||
import org.briarproject.bramble.api.sync.SyncRecordReader;
|
import org.briarproject.bramble.api.sync.SyncRecordReader;
|
||||||
import org.briarproject.bramble.api.sync.Versions;
|
import org.briarproject.bramble.api.sync.Versions;
|
||||||
@@ -27,12 +26,10 @@ import javax.annotation.concurrent.NotThreadSafe;
|
|||||||
import static org.briarproject.bramble.api.sync.RecordTypes.ACK;
|
import static org.briarproject.bramble.api.sync.RecordTypes.ACK;
|
||||||
import static org.briarproject.bramble.api.sync.RecordTypes.MESSAGE;
|
import static org.briarproject.bramble.api.sync.RecordTypes.MESSAGE;
|
||||||
import static org.briarproject.bramble.api.sync.RecordTypes.OFFER;
|
import static org.briarproject.bramble.api.sync.RecordTypes.OFFER;
|
||||||
import static org.briarproject.bramble.api.sync.RecordTypes.PRIORITY;
|
|
||||||
import static org.briarproject.bramble.api.sync.RecordTypes.REQUEST;
|
import static org.briarproject.bramble.api.sync.RecordTypes.REQUEST;
|
||||||
import static org.briarproject.bramble.api.sync.RecordTypes.VERSIONS;
|
import static org.briarproject.bramble.api.sync.RecordTypes.VERSIONS;
|
||||||
import static org.briarproject.bramble.api.sync.SyncConstants.MAX_SUPPORTED_VERSIONS;
|
import static org.briarproject.bramble.api.sync.SyncConstants.MAX_SUPPORTED_VERSIONS;
|
||||||
import static org.briarproject.bramble.api.sync.SyncConstants.MESSAGE_HEADER_LENGTH;
|
import static org.briarproject.bramble.api.sync.SyncConstants.MESSAGE_HEADER_LENGTH;
|
||||||
import static org.briarproject.bramble.api.sync.SyncConstants.PRIORITY_NONCE_BYTES;
|
|
||||||
import static org.briarproject.bramble.api.sync.SyncConstants.PROTOCOL_VERSION;
|
import static org.briarproject.bramble.api.sync.SyncConstants.PROTOCOL_VERSION;
|
||||||
|
|
||||||
@NotThreadSafe
|
@NotThreadSafe
|
||||||
@@ -51,7 +48,7 @@ class SyncRecordReaderImpl implements SyncRecordReader {
|
|||||||
|
|
||||||
private static boolean isKnownRecordType(byte type) {
|
private static boolean isKnownRecordType(byte type) {
|
||||||
return type == ACK || type == MESSAGE || type == OFFER ||
|
return type == ACK || type == MESSAGE || type == OFFER ||
|
||||||
type == REQUEST || type == VERSIONS || type == PRIORITY;
|
type == REQUEST || type == VERSIONS;
|
||||||
}
|
}
|
||||||
|
|
||||||
private final MessageFactory messageFactory;
|
private final MessageFactory messageFactory;
|
||||||
@@ -177,23 +174,4 @@ class SyncRecordReaderImpl implements SyncRecordReader {
|
|||||||
nextRecord = null;
|
nextRecord = null;
|
||||||
return supported;
|
return supported;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
public boolean hasPriority() throws IOException {
|
|
||||||
return !eof() && getNextRecordType() == PRIORITY;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public Priority readPriority() throws IOException {
|
|
||||||
if (!hasPriority()) throw new FormatException();
|
|
||||||
return new Priority(readNonce());
|
|
||||||
}
|
|
||||||
|
|
||||||
private byte[] readNonce() throws IOException {
|
|
||||||
if (nextRecord == null) throw new AssertionError();
|
|
||||||
byte[] payload = nextRecord.getPayload();
|
|
||||||
if (payload.length != PRIORITY_NONCE_BYTES) throw new FormatException();
|
|
||||||
nextRecord = null;
|
|
||||||
return payload;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -8,7 +8,6 @@ import org.briarproject.bramble.api.sync.Message;
|
|||||||
import org.briarproject.bramble.api.sync.MessageFactory;
|
import org.briarproject.bramble.api.sync.MessageFactory;
|
||||||
import org.briarproject.bramble.api.sync.MessageId;
|
import org.briarproject.bramble.api.sync.MessageId;
|
||||||
import org.briarproject.bramble.api.sync.Offer;
|
import org.briarproject.bramble.api.sync.Offer;
|
||||||
import org.briarproject.bramble.api.sync.Priority;
|
|
||||||
import org.briarproject.bramble.api.sync.Request;
|
import org.briarproject.bramble.api.sync.Request;
|
||||||
import org.briarproject.bramble.api.sync.SyncRecordWriter;
|
import org.briarproject.bramble.api.sync.SyncRecordWriter;
|
||||||
import org.briarproject.bramble.api.sync.Versions;
|
import org.briarproject.bramble.api.sync.Versions;
|
||||||
@@ -21,7 +20,6 @@ import javax.annotation.concurrent.NotThreadSafe;
|
|||||||
import static org.briarproject.bramble.api.sync.RecordTypes.ACK;
|
import static org.briarproject.bramble.api.sync.RecordTypes.ACK;
|
||||||
import static org.briarproject.bramble.api.sync.RecordTypes.MESSAGE;
|
import static org.briarproject.bramble.api.sync.RecordTypes.MESSAGE;
|
||||||
import static org.briarproject.bramble.api.sync.RecordTypes.OFFER;
|
import static org.briarproject.bramble.api.sync.RecordTypes.OFFER;
|
||||||
import static org.briarproject.bramble.api.sync.RecordTypes.PRIORITY;
|
|
||||||
import static org.briarproject.bramble.api.sync.RecordTypes.REQUEST;
|
import static org.briarproject.bramble.api.sync.RecordTypes.REQUEST;
|
||||||
import static org.briarproject.bramble.api.sync.RecordTypes.VERSIONS;
|
import static org.briarproject.bramble.api.sync.RecordTypes.VERSIONS;
|
||||||
import static org.briarproject.bramble.api.sync.SyncConstants.PROTOCOL_VERSION;
|
import static org.briarproject.bramble.api.sync.SyncConstants.PROTOCOL_VERSION;
|
||||||
@@ -75,12 +73,6 @@ class SyncRecordWriterImpl implements SyncRecordWriter {
|
|||||||
writeRecord(VERSIONS);
|
writeRecord(VERSIONS);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
public void writePriority(Priority p) throws IOException {
|
|
||||||
writer.writeRecord(
|
|
||||||
new Record(PROTOCOL_VERSION, PRIORITY, p.getNonce()));
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void flush() throws IOException {
|
public void flush() throws IOException {
|
||||||
writer.flush();
|
writer.flush();
|
||||||
|
|||||||
@@ -5,9 +5,6 @@ import org.briarproject.bramble.api.db.DatabaseComponent;
|
|||||||
import org.briarproject.bramble.api.db.DatabaseExecutor;
|
import org.briarproject.bramble.api.db.DatabaseExecutor;
|
||||||
import org.briarproject.bramble.api.event.EventBus;
|
import org.briarproject.bramble.api.event.EventBus;
|
||||||
import org.briarproject.bramble.api.nullsafety.NotNullByDefault;
|
import org.briarproject.bramble.api.nullsafety.NotNullByDefault;
|
||||||
import org.briarproject.bramble.api.plugin.TransportId;
|
|
||||||
import org.briarproject.bramble.api.sync.Priority;
|
|
||||||
import org.briarproject.bramble.api.sync.PriorityHandler;
|
|
||||||
import org.briarproject.bramble.api.sync.SyncRecordReader;
|
import org.briarproject.bramble.api.sync.SyncRecordReader;
|
||||||
import org.briarproject.bramble.api.sync.SyncRecordReaderFactory;
|
import org.briarproject.bramble.api.sync.SyncRecordReaderFactory;
|
||||||
import org.briarproject.bramble.api.sync.SyncRecordWriter;
|
import org.briarproject.bramble.api.sync.SyncRecordWriter;
|
||||||
@@ -21,7 +18,6 @@ import java.io.InputStream;
|
|||||||
import java.io.OutputStream;
|
import java.io.OutputStream;
|
||||||
import java.util.concurrent.Executor;
|
import java.util.concurrent.Executor;
|
||||||
|
|
||||||
import javax.annotation.Nullable;
|
|
||||||
import javax.annotation.concurrent.Immutable;
|
import javax.annotation.concurrent.Immutable;
|
||||||
import javax.inject.Inject;
|
import javax.inject.Inject;
|
||||||
|
|
||||||
@@ -50,32 +46,29 @@ class SyncSessionFactoryImpl implements SyncSessionFactory {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public SyncSession createIncomingSession(ContactId c, InputStream in,
|
public SyncSession createIncomingSession(ContactId c, InputStream in) {
|
||||||
PriorityHandler handler) {
|
|
||||||
SyncRecordReader recordReader =
|
SyncRecordReader recordReader =
|
||||||
recordReaderFactory.createRecordReader(in);
|
recordReaderFactory.createRecordReader(in);
|
||||||
return new IncomingSession(db, dbExecutor, eventBus, c, recordReader,
|
return new IncomingSession(db, dbExecutor, eventBus, c, recordReader);
|
||||||
handler);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public SyncSession createSimplexOutgoingSession(ContactId c, TransportId t,
|
public SyncSession createSimplexOutgoingSession(ContactId c,
|
||||||
int maxLatency, StreamWriter streamWriter) {
|
int maxLatency, StreamWriter streamWriter) {
|
||||||
OutputStream out = streamWriter.getOutputStream();
|
OutputStream out = streamWriter.getOutputStream();
|
||||||
SyncRecordWriter recordWriter =
|
SyncRecordWriter recordWriter =
|
||||||
recordWriterFactory.createRecordWriter(out);
|
recordWriterFactory.createRecordWriter(out);
|
||||||
return new SimplexOutgoingSession(db, dbExecutor, eventBus, c, t,
|
return new SimplexOutgoingSession(db, dbExecutor, eventBus, c,
|
||||||
maxLatency, streamWriter, recordWriter);
|
maxLatency, streamWriter, recordWriter);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public SyncSession createDuplexOutgoingSession(ContactId c, TransportId t,
|
public SyncSession createDuplexOutgoingSession(ContactId c, int maxLatency,
|
||||||
int maxLatency, int maxIdleTime, StreamWriter streamWriter,
|
int maxIdleTime, StreamWriter streamWriter) {
|
||||||
@Nullable Priority priority) {
|
|
||||||
OutputStream out = streamWriter.getOutputStream();
|
OutputStream out = streamWriter.getOutputStream();
|
||||||
SyncRecordWriter recordWriter =
|
SyncRecordWriter recordWriter =
|
||||||
recordWriterFactory.createRecordWriter(out);
|
recordWriterFactory.createRecordWriter(out);
|
||||||
return new DuplexOutgoingSession(db, dbExecutor, eventBus, clock, c, t,
|
return new DuplexOutgoingSession(db, dbExecutor, eventBus, clock, c,
|
||||||
maxLatency, maxIdleTime, streamWriter, recordWriter, priority);
|
maxLatency, maxIdleTime, streamWriter, recordWriter);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
package org.briarproject.bramble.account;
|
package org.briarproject.bramble.account;
|
||||||
|
|
||||||
import org.briarproject.bramble.api.crypto.CryptoComponent;
|
import org.briarproject.bramble.api.crypto.CryptoComponent;
|
||||||
import org.briarproject.bramble.api.crypto.DecryptionException;
|
|
||||||
import org.briarproject.bramble.api.crypto.KeyStrengthener;
|
import org.briarproject.bramble.api.crypto.KeyStrengthener;
|
||||||
import org.briarproject.bramble.api.crypto.SecretKey;
|
import org.briarproject.bramble.api.crypto.SecretKey;
|
||||||
import org.briarproject.bramble.api.db.DatabaseConfig;
|
import org.briarproject.bramble.api.db.DatabaseConfig;
|
||||||
@@ -20,15 +19,12 @@ import java.io.FileInputStream;
|
|||||||
import java.io.FileOutputStream;
|
import java.io.FileOutputStream;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.io.InputStreamReader;
|
import java.io.InputStreamReader;
|
||||||
import java.nio.charset.Charset;
|
|
||||||
|
|
||||||
import javax.annotation.Nullable;
|
import javax.annotation.Nullable;
|
||||||
|
|
||||||
import static junit.framework.Assert.assertFalse;
|
import static junit.framework.Assert.assertFalse;
|
||||||
import static junit.framework.Assert.assertNull;
|
import static junit.framework.Assert.assertNull;
|
||||||
import static junit.framework.Assert.assertTrue;
|
import static junit.framework.Assert.assertTrue;
|
||||||
import static org.briarproject.bramble.api.crypto.DecryptionResult.INVALID_CIPHERTEXT;
|
|
||||||
import static org.briarproject.bramble.api.crypto.DecryptionResult.INVALID_PASSWORD;
|
|
||||||
import static org.briarproject.bramble.test.TestUtils.deleteTestDirectory;
|
import static org.briarproject.bramble.test.TestUtils.deleteTestDirectory;
|
||||||
import static org.briarproject.bramble.test.TestUtils.getIdentity;
|
import static org.briarproject.bramble.test.TestUtils.getIdentity;
|
||||||
import static org.briarproject.bramble.test.TestUtils.getRandomBytes;
|
import static org.briarproject.bramble.test.TestUtils.getRandomBytes;
|
||||||
@@ -39,7 +35,6 @@ import static org.briarproject.bramble.util.StringUtils.toHexString;
|
|||||||
import static org.junit.Assert.assertArrayEquals;
|
import static org.junit.Assert.assertArrayEquals;
|
||||||
import static org.junit.Assert.assertEquals;
|
import static org.junit.Assert.assertEquals;
|
||||||
import static org.junit.Assert.assertNotNull;
|
import static org.junit.Assert.assertNotNull;
|
||||||
import static org.junit.Assert.fail;
|
|
||||||
|
|
||||||
public class AccountManagerImplTest extends BrambleMockTestCase {
|
public class AccountManagerImplTest extends BrambleMockTestCase {
|
||||||
|
|
||||||
@@ -88,13 +83,8 @@ public class AccountManagerImplTest extends BrambleMockTestCase {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void testSignInThrowsExceptionIfDbKeyCannotBeLoaded() {
|
public void testSignInReturnsFalseIfDbKeyCannotBeLoaded() {
|
||||||
try {
|
assertFalse(accountManager.signIn(password));
|
||||||
accountManager.signIn(password);
|
|
||||||
fail();
|
|
||||||
} catch (DecryptionException expected) {
|
|
||||||
assertEquals(INVALID_CIPHERTEXT, expected.getDecryptionResult());
|
|
||||||
}
|
|
||||||
assertFalse(accountManager.hasDatabaseKey());
|
assertFalse(accountManager.hasDatabaseKey());
|
||||||
|
|
||||||
assertFalse(keyFile.exists());
|
assertFalse(keyFile.exists());
|
||||||
@@ -102,11 +92,11 @@ public class AccountManagerImplTest extends BrambleMockTestCase {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void testSignInThrowsExceptionIfPasswordIsWrong() throws Exception {
|
public void testSignInReturnsFalseIfPasswordIsWrong() throws Exception {
|
||||||
context.checking(new Expectations() {{
|
context.checking(new Expectations() {{
|
||||||
oneOf(crypto).decryptWithPassword(encryptedKey, password,
|
oneOf(crypto).decryptWithPassword(encryptedKey, password,
|
||||||
keyStrengthener);
|
keyStrengthener);
|
||||||
will(throwException(new DecryptionException(INVALID_PASSWORD)));
|
will(returnValue(null));
|
||||||
}});
|
}});
|
||||||
|
|
||||||
storeDatabaseKey(keyFile, encryptedKeyHex);
|
storeDatabaseKey(keyFile, encryptedKeyHex);
|
||||||
@@ -115,12 +105,7 @@ public class AccountManagerImplTest extends BrambleMockTestCase {
|
|||||||
assertEquals(encryptedKeyHex, loadDatabaseKey(keyFile));
|
assertEquals(encryptedKeyHex, loadDatabaseKey(keyFile));
|
||||||
assertEquals(encryptedKeyHex, loadDatabaseKey(keyBackupFile));
|
assertEquals(encryptedKeyHex, loadDatabaseKey(keyBackupFile));
|
||||||
|
|
||||||
try {
|
assertFalse(accountManager.signIn(password));
|
||||||
accountManager.signIn(password);
|
|
||||||
fail();
|
|
||||||
} catch (DecryptionException expected) {
|
|
||||||
assertEquals(INVALID_PASSWORD, expected.getDecryptionResult());
|
|
||||||
}
|
|
||||||
assertFalse(accountManager.hasDatabaseKey());
|
assertFalse(accountManager.hasDatabaseKey());
|
||||||
|
|
||||||
assertEquals(encryptedKeyHex, loadDatabaseKey(keyFile));
|
assertEquals(encryptedKeyHex, loadDatabaseKey(keyFile));
|
||||||
@@ -143,7 +128,7 @@ public class AccountManagerImplTest extends BrambleMockTestCase {
|
|||||||
assertEquals(encryptedKeyHex, loadDatabaseKey(keyFile));
|
assertEquals(encryptedKeyHex, loadDatabaseKey(keyFile));
|
||||||
assertEquals(encryptedKeyHex, loadDatabaseKey(keyBackupFile));
|
assertEquals(encryptedKeyHex, loadDatabaseKey(keyBackupFile));
|
||||||
|
|
||||||
accountManager.signIn(password);
|
assertTrue(accountManager.signIn(password));
|
||||||
assertTrue(accountManager.hasDatabaseKey());
|
assertTrue(accountManager.hasDatabaseKey());
|
||||||
SecretKey decrypted = accountManager.getDatabaseKey();
|
SecretKey decrypted = accountManager.getDatabaseKey();
|
||||||
assertNotNull(decrypted);
|
assertNotNull(decrypted);
|
||||||
@@ -172,7 +157,7 @@ public class AccountManagerImplTest extends BrambleMockTestCase {
|
|||||||
assertEquals(encryptedKeyHex, loadDatabaseKey(keyFile));
|
assertEquals(encryptedKeyHex, loadDatabaseKey(keyFile));
|
||||||
assertEquals(encryptedKeyHex, loadDatabaseKey(keyBackupFile));
|
assertEquals(encryptedKeyHex, loadDatabaseKey(keyBackupFile));
|
||||||
|
|
||||||
accountManager.signIn(password);
|
assertTrue(accountManager.signIn(password));
|
||||||
assertTrue(accountManager.hasDatabaseKey());
|
assertTrue(accountManager.hasDatabaseKey());
|
||||||
SecretKey decrypted = accountManager.getDatabaseKey();
|
SecretKey decrypted = accountManager.getDatabaseKey();
|
||||||
assertNotNull(decrypted);
|
assertNotNull(decrypted);
|
||||||
@@ -254,6 +239,55 @@ public class AccountManagerImplTest extends BrambleMockTestCase {
|
|||||||
assertFalse(keyBackupFile.exists());
|
assertFalse(keyBackupFile.exists());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testAccountExistsReturnsFalseIfDbDirectoryDoesNotExist()
|
||||||
|
throws Exception {
|
||||||
|
storeDatabaseKey(keyFile, encryptedKeyHex);
|
||||||
|
storeDatabaseKey(keyBackupFile, encryptedKeyHex);
|
||||||
|
|
||||||
|
assertFalse(dbDir.exists());
|
||||||
|
|
||||||
|
assertFalse(accountManager.accountExists());
|
||||||
|
|
||||||
|
assertEquals(encryptedKeyHex, loadDatabaseKey(keyFile));
|
||||||
|
assertEquals(encryptedKeyHex, loadDatabaseKey(keyBackupFile));
|
||||||
|
assertFalse(dbDir.exists());
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testAccountExistsReturnsFalseIfDbDirectoryIsNotDirectory()
|
||||||
|
throws Exception {
|
||||||
|
storeDatabaseKey(keyFile, encryptedKeyHex);
|
||||||
|
storeDatabaseKey(keyBackupFile, encryptedKeyHex);
|
||||||
|
|
||||||
|
assertTrue(dbDir.createNewFile());
|
||||||
|
assertFalse(dbDir.isDirectory());
|
||||||
|
|
||||||
|
assertFalse(accountManager.accountExists());
|
||||||
|
|
||||||
|
assertEquals(encryptedKeyHex, loadDatabaseKey(keyFile));
|
||||||
|
assertEquals(encryptedKeyHex, loadDatabaseKey(keyBackupFile));
|
||||||
|
assertTrue(dbDir.exists());
|
||||||
|
assertFalse(dbDir.isDirectory());
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testAccountExistsReturnsTrueIfDbDirectoryIsDirectory()
|
||||||
|
throws Exception {
|
||||||
|
storeDatabaseKey(keyFile, encryptedKeyHex);
|
||||||
|
storeDatabaseKey(keyBackupFile, encryptedKeyHex);
|
||||||
|
|
||||||
|
assertTrue(dbDir.mkdirs());
|
||||||
|
assertTrue(dbDir.isDirectory());
|
||||||
|
|
||||||
|
assertTrue(accountManager.accountExists());
|
||||||
|
|
||||||
|
assertEquals(encryptedKeyHex, loadDatabaseKey(keyFile));
|
||||||
|
assertEquals(encryptedKeyHex, loadDatabaseKey(keyBackupFile));
|
||||||
|
assertTrue(dbDir.exists());
|
||||||
|
assertTrue(dbDir.isDirectory());
|
||||||
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void testCreateAccountStoresDbKey() throws Exception {
|
public void testCreateAccountStoresDbKey() throws Exception {
|
||||||
context.checking(new Expectations() {{
|
context.checking(new Expectations() {{
|
||||||
@@ -281,36 +315,26 @@ public class AccountManagerImplTest extends BrambleMockTestCase {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void testChangePasswordThrowsExceptionIfDbKeyCannotBeLoaded() {
|
public void testChangePasswordReturnsFalseIfDbKeyCannotBeLoaded() {
|
||||||
try {
|
assertFalse(accountManager.changePassword(password, newPassword));
|
||||||
accountManager.changePassword(password, newPassword);
|
|
||||||
fail();
|
|
||||||
} catch (DecryptionException expected) {
|
|
||||||
assertEquals(INVALID_CIPHERTEXT, expected.getDecryptionResult());
|
|
||||||
}
|
|
||||||
|
|
||||||
assertFalse(keyFile.exists());
|
assertFalse(keyFile.exists());
|
||||||
assertFalse(keyBackupFile.exists());
|
assertFalse(keyBackupFile.exists());
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void testChangePasswordThrowsExceptionIfPasswordIsWrong()
|
public void testChangePasswordReturnsFalseIfPasswordIsWrong()
|
||||||
throws Exception {
|
throws Exception {
|
||||||
context.checking(new Expectations() {{
|
context.checking(new Expectations() {{
|
||||||
oneOf(crypto).decryptWithPassword(encryptedKey, password,
|
oneOf(crypto).decryptWithPassword(encryptedKey, password,
|
||||||
keyStrengthener);
|
keyStrengthener);
|
||||||
will(throwException(new DecryptionException(INVALID_PASSWORD)));
|
will(returnValue(null));
|
||||||
}});
|
}});
|
||||||
|
|
||||||
storeDatabaseKey(keyFile, encryptedKeyHex);
|
storeDatabaseKey(keyFile, encryptedKeyHex);
|
||||||
storeDatabaseKey(keyBackupFile, encryptedKeyHex);
|
storeDatabaseKey(keyBackupFile, encryptedKeyHex);
|
||||||
|
|
||||||
try {
|
assertFalse(accountManager.changePassword(password, newPassword));
|
||||||
accountManager.changePassword(password, newPassword);
|
|
||||||
fail();
|
|
||||||
} catch (DecryptionException expected) {
|
|
||||||
assertEquals(INVALID_PASSWORD, expected.getDecryptionResult());
|
|
||||||
}
|
|
||||||
|
|
||||||
assertEquals(encryptedKeyHex, loadDatabaseKey(keyFile));
|
assertEquals(encryptedKeyHex, loadDatabaseKey(keyFile));
|
||||||
assertEquals(encryptedKeyHex, loadDatabaseKey(keyBackupFile));
|
assertEquals(encryptedKeyHex, loadDatabaseKey(keyBackupFile));
|
||||||
@@ -333,7 +357,7 @@ public class AccountManagerImplTest extends BrambleMockTestCase {
|
|||||||
storeDatabaseKey(keyFile, encryptedKeyHex);
|
storeDatabaseKey(keyFile, encryptedKeyHex);
|
||||||
storeDatabaseKey(keyBackupFile, encryptedKeyHex);
|
storeDatabaseKey(keyBackupFile, encryptedKeyHex);
|
||||||
|
|
||||||
accountManager.changePassword(password, newPassword);
|
assertTrue(accountManager.changePassword(password, newPassword));
|
||||||
|
|
||||||
assertEquals(newEncryptedKeyHex, loadDatabaseKey(keyFile));
|
assertEquals(newEncryptedKeyHex, loadDatabaseKey(keyFile));
|
||||||
assertEquals(newEncryptedKeyHex, loadDatabaseKey(keyBackupFile));
|
assertEquals(newEncryptedKeyHex, loadDatabaseKey(keyBackupFile));
|
||||||
@@ -342,7 +366,7 @@ public class AccountManagerImplTest extends BrambleMockTestCase {
|
|||||||
private void storeDatabaseKey(File f, String hex) throws IOException {
|
private void storeDatabaseKey(File f, String hex) throws IOException {
|
||||||
f.getParentFile().mkdirs();
|
f.getParentFile().mkdirs();
|
||||||
FileOutputStream out = new FileOutputStream(f);
|
FileOutputStream out = new FileOutputStream(f);
|
||||||
out.write(hex.getBytes(Charset.forName("UTF-8")));
|
out.write(hex.getBytes("UTF-8"));
|
||||||
out.flush();
|
out.flush();
|
||||||
out.close();
|
out.close();
|
||||||
}
|
}
|
||||||
@@ -350,7 +374,7 @@ public class AccountManagerImplTest extends BrambleMockTestCase {
|
|||||||
@Nullable
|
@Nullable
|
||||||
private String loadDatabaseKey(File f) throws IOException {
|
private String loadDatabaseKey(File f) throws IOException {
|
||||||
BufferedReader reader = new BufferedReader(new InputStreamReader(
|
BufferedReader reader = new BufferedReader(new InputStreamReader(
|
||||||
new FileInputStream(f), Charset.forName("UTF-8")));
|
new FileInputStream(f), "UTF-8"));
|
||||||
String hex = reader.readLine();
|
String hex = reader.readLine();
|
||||||
reader.close();
|
reader.close();
|
||||||
return hex;
|
return hex;
|
||||||
|
|||||||
@@ -1,611 +0,0 @@
|
|||||||
package org.briarproject.bramble.connection;
|
|
||||||
|
|
||||||
import org.briarproject.bramble.api.connection.ConnectionRegistry;
|
|
||||||
import org.briarproject.bramble.api.connection.InterruptibleConnection;
|
|
||||||
import org.briarproject.bramble.api.contact.ContactId;
|
|
||||||
import org.briarproject.bramble.api.contact.PendingContactId;
|
|
||||||
import org.briarproject.bramble.api.event.EventBus;
|
|
||||||
import org.briarproject.bramble.api.plugin.PluginConfig;
|
|
||||||
import org.briarproject.bramble.api.plugin.TransportId;
|
|
||||||
import org.briarproject.bramble.api.plugin.event.ConnectionClosedEvent;
|
|
||||||
import org.briarproject.bramble.api.plugin.event.ConnectionOpenedEvent;
|
|
||||||
import org.briarproject.bramble.api.plugin.event.ContactConnectedEvent;
|
|
||||||
import org.briarproject.bramble.api.plugin.event.ContactDisconnectedEvent;
|
|
||||||
import org.briarproject.bramble.api.rendezvous.event.RendezvousConnectionClosedEvent;
|
|
||||||
import org.briarproject.bramble.api.rendezvous.event.RendezvousConnectionOpenedEvent;
|
|
||||||
import org.briarproject.bramble.api.sync.Priority;
|
|
||||||
import org.briarproject.bramble.test.BrambleMockTestCase;
|
|
||||||
import org.jmock.Expectations;
|
|
||||||
import org.junit.Test;
|
|
||||||
|
|
||||||
import java.util.Collection;
|
|
||||||
|
|
||||||
import static java.util.Collections.emptyList;
|
|
||||||
import static java.util.Collections.emptyMap;
|
|
||||||
import static java.util.Collections.singletonList;
|
|
||||||
import static java.util.Collections.singletonMap;
|
|
||||||
import static org.briarproject.bramble.test.TestUtils.getContactId;
|
|
||||||
import static org.briarproject.bramble.test.TestUtils.getRandomId;
|
|
||||||
import static org.briarproject.bramble.test.TestUtils.getTransportId;
|
|
||||||
import static org.briarproject.bramble.util.StringUtils.fromHexString;
|
|
||||||
import static org.junit.Assert.assertEquals;
|
|
||||||
import static org.junit.Assert.assertFalse;
|
|
||||||
import static org.junit.Assert.assertTrue;
|
|
||||||
import static org.junit.Assert.fail;
|
|
||||||
|
|
||||||
public class ConnectionRegistryImplTest extends BrambleMockTestCase {
|
|
||||||
|
|
||||||
private final EventBus eventBus = context.mock(EventBus.class);
|
|
||||||
private final PluginConfig pluginConfig = context.mock(PluginConfig.class);
|
|
||||||
private final InterruptibleConnection conn1 =
|
|
||||||
context.mock(InterruptibleConnection.class, "conn1");
|
|
||||||
private final InterruptibleConnection conn2 =
|
|
||||||
context.mock(InterruptibleConnection.class, "conn2");
|
|
||||||
private final InterruptibleConnection conn3 =
|
|
||||||
context.mock(InterruptibleConnection.class, "conn3");
|
|
||||||
|
|
||||||
private final ContactId contactId1 = getContactId();
|
|
||||||
private final ContactId contactId2 = getContactId();
|
|
||||||
private final TransportId transportId1 = getTransportId();
|
|
||||||
private final TransportId transportId2 = getTransportId();
|
|
||||||
private final TransportId transportId3 = getTransportId();
|
|
||||||
private final PendingContactId pendingContactId =
|
|
||||||
new PendingContactId(getRandomId());
|
|
||||||
|
|
||||||
private final Priority low =
|
|
||||||
new Priority(fromHexString("00000000000000000000000000000000"));
|
|
||||||
private final Priority high =
|
|
||||||
new Priority(fromHexString("FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"));
|
|
||||||
|
|
||||||
@Test
|
|
||||||
public void testRegisterMultipleConnections() {
|
|
||||||
context.checking(new Expectations() {{
|
|
||||||
allowing(pluginConfig).getTransportPreferences();
|
|
||||||
will(returnValue(emptyMap()));
|
|
||||||
}});
|
|
||||||
|
|
||||||
ConnectionRegistry c =
|
|
||||||
new ConnectionRegistryImpl(eventBus, pluginConfig);
|
|
||||||
|
|
||||||
// The registry should be empty
|
|
||||||
assertEquals(emptyList(), c.getConnectedContacts(transportId1));
|
|
||||||
assertEquals(emptyList(), c.getConnectedOrBetterContacts(transportId1));
|
|
||||||
assertEquals(emptyList(), c.getConnectedContacts(transportId2));
|
|
||||||
assertEquals(emptyList(), c.getConnectedOrBetterContacts(transportId2));
|
|
||||||
assertEquals(emptyList(), c.getConnectedContacts(transportId3));
|
|
||||||
assertEquals(emptyList(), c.getConnectedOrBetterContacts(transportId3));
|
|
||||||
assertFalse(c.isConnected(contactId1));
|
|
||||||
assertFalse(c.isConnected(contactId1, transportId1));
|
|
||||||
assertFalse(c.isConnected(contactId1, transportId2));
|
|
||||||
assertFalse(c.isConnected(contactId1, transportId3));
|
|
||||||
|
|
||||||
// Check that a registered connection shows up - this should
|
|
||||||
// broadcast a ConnectionOpenedEvent and a ContactConnectedEvent
|
|
||||||
context.checking(new Expectations() {{
|
|
||||||
oneOf(eventBus).broadcast(with(any(ConnectionOpenedEvent.class)));
|
|
||||||
oneOf(eventBus).broadcast(with(any(ContactConnectedEvent.class)));
|
|
||||||
}});
|
|
||||||
c.registerIncomingConnection(contactId1, transportId1, conn1);
|
|
||||||
context.assertIsSatisfied();
|
|
||||||
|
|
||||||
assertEquals(singletonList(contactId1),
|
|
||||||
c.getConnectedContacts(transportId1));
|
|
||||||
assertEquals(singletonList(contactId1),
|
|
||||||
c.getConnectedOrBetterContacts(transportId1));
|
|
||||||
assertTrue(c.isConnected(contactId1));
|
|
||||||
assertTrue(c.isConnected(contactId1, transportId1));
|
|
||||||
|
|
||||||
// Register another connection with the same contact and transport -
|
|
||||||
// this should broadcast a ConnectionOpenedEvent and lookup should be
|
|
||||||
// unaffected
|
|
||||||
context.checking(new Expectations() {{
|
|
||||||
oneOf(eventBus).broadcast(with(any(ConnectionOpenedEvent.class)));
|
|
||||||
}});
|
|
||||||
c.registerIncomingConnection(contactId1, transportId1, conn2);
|
|
||||||
context.assertIsSatisfied();
|
|
||||||
|
|
||||||
assertEquals(singletonList(contactId1),
|
|
||||||
c.getConnectedContacts(transportId1));
|
|
||||||
assertEquals(singletonList(contactId1),
|
|
||||||
c.getConnectedOrBetterContacts(transportId1));
|
|
||||||
assertTrue(c.isConnected(contactId1));
|
|
||||||
assertTrue(c.isConnected(contactId1, transportId1));
|
|
||||||
|
|
||||||
// Unregister one of the connections - this should broadcast a
|
|
||||||
// ConnectionClosedEvent and lookup should be unaffected
|
|
||||||
context.checking(new Expectations() {{
|
|
||||||
oneOf(eventBus).broadcast(with(any(ConnectionClosedEvent.class)));
|
|
||||||
}});
|
|
||||||
c.unregisterConnection(contactId1, transportId1, conn1, true, false);
|
|
||||||
context.assertIsSatisfied();
|
|
||||||
|
|
||||||
assertEquals(singletonList(contactId1),
|
|
||||||
c.getConnectedContacts(transportId1));
|
|
||||||
assertEquals(singletonList(contactId1),
|
|
||||||
c.getConnectedOrBetterContacts(transportId1));
|
|
||||||
assertTrue(c.isConnected(contactId1));
|
|
||||||
assertTrue(c.isConnected(contactId1, transportId1));
|
|
||||||
|
|
||||||
// Unregister the other connection - this should broadcast a
|
|
||||||
// ConnectionClosedEvent and a ContactDisconnectedEvent
|
|
||||||
context.checking(new Expectations() {{
|
|
||||||
oneOf(eventBus).broadcast(with(any(ConnectionClosedEvent.class)));
|
|
||||||
oneOf(eventBus).broadcast(with(any(
|
|
||||||
ContactDisconnectedEvent.class)));
|
|
||||||
}});
|
|
||||||
c.unregisterConnection(contactId1, transportId1, conn2, true, false);
|
|
||||||
context.assertIsSatisfied();
|
|
||||||
|
|
||||||
assertEquals(emptyList(), c.getConnectedContacts(transportId1));
|
|
||||||
assertEquals(emptyList(), c.getConnectedOrBetterContacts(transportId1));
|
|
||||||
assertFalse(c.isConnected(contactId1));
|
|
||||||
assertFalse(c.isConnected(contactId1, transportId1));
|
|
||||||
|
|
||||||
// Try to unregister the connection again - exception should be thrown
|
|
||||||
try {
|
|
||||||
c.unregisterConnection(contactId1, transportId1, conn2,
|
|
||||||
true, false);
|
|
||||||
fail();
|
|
||||||
} catch (IllegalArgumentException expected) {
|
|
||||||
// Expected
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@Test
|
|
||||||
public void testRegisterMultipleContacts() {
|
|
||||||
context.checking(new Expectations() {{
|
|
||||||
allowing(pluginConfig).getTransportPreferences();
|
|
||||||
will(returnValue(emptyMap()));
|
|
||||||
}});
|
|
||||||
|
|
||||||
ConnectionRegistry c =
|
|
||||||
new ConnectionRegistryImpl(eventBus, pluginConfig);
|
|
||||||
|
|
||||||
// Register two contacts with one transport, then one of the contacts
|
|
||||||
// with a second transport - this should broadcast three
|
|
||||||
// ConnectionOpenedEvents and two ContactConnectedEvents
|
|
||||||
context.checking(new Expectations() {{
|
|
||||||
exactly(3).of(eventBus).broadcast(with(any(
|
|
||||||
ConnectionOpenedEvent.class)));
|
|
||||||
exactly(2).of(eventBus).broadcast(with(any(
|
|
||||||
ContactConnectedEvent.class)));
|
|
||||||
}});
|
|
||||||
c.registerIncomingConnection(contactId1, transportId1, conn1);
|
|
||||||
c.registerIncomingConnection(contactId2, transportId1, conn2);
|
|
||||||
c.registerIncomingConnection(contactId2, transportId2, conn3);
|
|
||||||
context.assertIsSatisfied();
|
|
||||||
|
|
||||||
assertTrue(c.isConnected(contactId1));
|
|
||||||
assertTrue(c.isConnected(contactId2));
|
|
||||||
|
|
||||||
assertTrue(c.isConnected(contactId1, transportId1));
|
|
||||||
assertFalse(c.isConnected(contactId1, transportId2));
|
|
||||||
|
|
||||||
assertTrue(c.isConnected(contactId2, transportId1));
|
|
||||||
assertTrue(c.isConnected(contactId2, transportId2));
|
|
||||||
|
|
||||||
Collection<ContactId> connected = c.getConnectedContacts(transportId1);
|
|
||||||
assertEquals(2, connected.size());
|
|
||||||
assertTrue(connected.contains(contactId1));
|
|
||||||
assertTrue(connected.contains(contactId2));
|
|
||||||
|
|
||||||
connected = c.getConnectedOrBetterContacts(transportId1);
|
|
||||||
assertEquals(2, connected.size());
|
|
||||||
assertTrue(connected.contains(contactId1));
|
|
||||||
assertTrue(connected.contains(contactId2));
|
|
||||||
|
|
||||||
assertEquals(singletonList(contactId2),
|
|
||||||
c.getConnectedContacts(transportId2));
|
|
||||||
assertEquals(singletonList(contactId2),
|
|
||||||
c.getConnectedOrBetterContacts(transportId2));
|
|
||||||
}
|
|
||||||
|
|
||||||
@Test
|
|
||||||
public void testConnectionsAreNotInterruptedUnlessPriorityIsSet() {
|
|
||||||
// Prefer transport 2 to transport 1
|
|
||||||
context.checking(new Expectations() {{
|
|
||||||
allowing(pluginConfig).getTransportPreferences();
|
|
||||||
will(returnValue(
|
|
||||||
singletonMap(transportId1, singletonList(transportId2))));
|
|
||||||
}});
|
|
||||||
|
|
||||||
ConnectionRegistry c =
|
|
||||||
new ConnectionRegistryImpl(eventBus, pluginConfig);
|
|
||||||
|
|
||||||
// Connect via transport 1 (worse than 2) with no priority set
|
|
||||||
context.checking(new Expectations() {{
|
|
||||||
oneOf(eventBus).broadcast(with(any(ConnectionOpenedEvent.class)));
|
|
||||||
oneOf(eventBus).broadcast(with(any(ContactConnectedEvent.class)));
|
|
||||||
}});
|
|
||||||
c.registerIncomingConnection(contactId1, transportId1, conn1);
|
|
||||||
context.assertIsSatisfied();
|
|
||||||
|
|
||||||
assertEquals(singletonList(contactId1),
|
|
||||||
c.getConnectedContacts(transportId1));
|
|
||||||
assertEquals(singletonList(contactId1),
|
|
||||||
c.getConnectedOrBetterContacts(transportId1));
|
|
||||||
|
|
||||||
assertEquals(emptyList(), c.getConnectedContacts(transportId2));
|
|
||||||
assertEquals(emptyList(), c.getConnectedOrBetterContacts(transportId2));
|
|
||||||
|
|
||||||
// Connect via transport 2 (better than 1) and set priority to high -
|
|
||||||
// the old connection should not be interrupted, despite using a worse
|
|
||||||
// transport, to remain compatible with old peers
|
|
||||||
context.checking(new Expectations() {{
|
|
||||||
oneOf(eventBus).broadcast(with(any(ConnectionOpenedEvent.class)));
|
|
||||||
}});
|
|
||||||
c.registerOutgoingConnection(contactId1, transportId2, conn2, high);
|
|
||||||
context.assertIsSatisfied();
|
|
||||||
|
|
||||||
assertEquals(singletonList(contactId1),
|
|
||||||
c.getConnectedContacts(transportId1));
|
|
||||||
assertEquals(singletonList(contactId1),
|
|
||||||
c.getConnectedOrBetterContacts(transportId1));
|
|
||||||
|
|
||||||
assertEquals(singletonList(contactId1),
|
|
||||||
c.getConnectedContacts(transportId2));
|
|
||||||
assertEquals(singletonList(contactId1),
|
|
||||||
c.getConnectedOrBetterContacts(transportId2));
|
|
||||||
|
|
||||||
// Connect via transport 3 (no preference) and set priority to high -
|
|
||||||
// again, no interruptions are expected
|
|
||||||
context.checking(new Expectations() {{
|
|
||||||
oneOf(eventBus).broadcast(with(any(ConnectionOpenedEvent.class)));
|
|
||||||
}});
|
|
||||||
c.registerOutgoingConnection(contactId1, transportId3, conn3, high);
|
|
||||||
context.assertIsSatisfied();
|
|
||||||
|
|
||||||
assertEquals(singletonList(contactId1),
|
|
||||||
c.getConnectedContacts(transportId1));
|
|
||||||
assertEquals(singletonList(contactId1),
|
|
||||||
c.getConnectedOrBetterContacts(transportId1));
|
|
||||||
|
|
||||||
assertEquals(singletonList(contactId1),
|
|
||||||
c.getConnectedContacts(transportId2));
|
|
||||||
assertEquals(singletonList(contactId1),
|
|
||||||
c.getConnectedOrBetterContacts(transportId2));
|
|
||||||
|
|
||||||
assertEquals(singletonList(contactId1),
|
|
||||||
c.getConnectedContacts(transportId3));
|
|
||||||
assertEquals(singletonList(contactId1),
|
|
||||||
c.getConnectedOrBetterContacts(transportId3));
|
|
||||||
}
|
|
||||||
|
|
||||||
@Test
|
|
||||||
public void testNewConnectionIsInterruptedIfOldConnectionUsesBetterTransport() {
|
|
||||||
// Prefer transport 1 to transport 2
|
|
||||||
context.checking(new Expectations() {{
|
|
||||||
allowing(pluginConfig).getTransportPreferences();
|
|
||||||
will(returnValue(
|
|
||||||
singletonMap(transportId2, singletonList(transportId1))));
|
|
||||||
}});
|
|
||||||
|
|
||||||
ConnectionRegistry c =
|
|
||||||
new ConnectionRegistryImpl(eventBus, pluginConfig);
|
|
||||||
|
|
||||||
// Connect via transport 1 (better than 2) and set priority to low
|
|
||||||
context.checking(new Expectations() {{
|
|
||||||
oneOf(eventBus).broadcast(with(any(ConnectionOpenedEvent.class)));
|
|
||||||
oneOf(eventBus).broadcast(with(any(ContactConnectedEvent.class)));
|
|
||||||
}});
|
|
||||||
c.registerOutgoingConnection(contactId1, transportId1, conn1, low);
|
|
||||||
context.assertIsSatisfied();
|
|
||||||
|
|
||||||
assertEquals(singletonList(contactId1),
|
|
||||||
c.getConnectedContacts(transportId1));
|
|
||||||
assertEquals(singletonList(contactId1),
|
|
||||||
c.getConnectedOrBetterContacts(transportId1));
|
|
||||||
|
|
||||||
// The contact is not connected via transport 2 but is connected via a
|
|
||||||
// better transport
|
|
||||||
assertEquals(emptyList(), c.getConnectedContacts(transportId2));
|
|
||||||
assertEquals(singletonList(contactId1),
|
|
||||||
c.getConnectedOrBetterContacts(transportId2));
|
|
||||||
|
|
||||||
// Connect via transport 2 (worse than 1) and set priority to high -
|
|
||||||
// the new connection should be interrupted because it uses a worse
|
|
||||||
// transport
|
|
||||||
context.checking(new Expectations() {{
|
|
||||||
oneOf(conn2).interruptOutgoingSession();
|
|
||||||
oneOf(eventBus).broadcast(with(any(ConnectionOpenedEvent.class)));
|
|
||||||
}});
|
|
||||||
c.registerOutgoingConnection(contactId1, transportId2, conn2, high);
|
|
||||||
context.assertIsSatisfied();
|
|
||||||
|
|
||||||
assertEquals(singletonList(contactId1),
|
|
||||||
c.getConnectedContacts(transportId1));
|
|
||||||
assertEquals(singletonList(contactId1),
|
|
||||||
c.getConnectedOrBetterContacts(transportId1));
|
|
||||||
|
|
||||||
assertEquals(singletonList(contactId1),
|
|
||||||
c.getConnectedContacts(transportId2));
|
|
||||||
assertEquals(singletonList(contactId1),
|
|
||||||
c.getConnectedOrBetterContacts(transportId2));
|
|
||||||
|
|
||||||
// Connect via transport 3 (no preference) and set priority to low -
|
|
||||||
// no further interruptions
|
|
||||||
context.checking(new Expectations() {{
|
|
||||||
oneOf(eventBus).broadcast(with(any(ConnectionOpenedEvent.class)));
|
|
||||||
}});
|
|
||||||
c.registerOutgoingConnection(contactId1, transportId3, conn3, low);
|
|
||||||
context.assertIsSatisfied();
|
|
||||||
|
|
||||||
assertEquals(singletonList(contactId1),
|
|
||||||
c.getConnectedContacts(transportId1));
|
|
||||||
assertEquals(singletonList(contactId1),
|
|
||||||
c.getConnectedOrBetterContacts(transportId1));
|
|
||||||
|
|
||||||
assertEquals(singletonList(contactId1),
|
|
||||||
c.getConnectedContacts(transportId2));
|
|
||||||
assertEquals(singletonList(contactId1),
|
|
||||||
c.getConnectedOrBetterContacts(transportId2));
|
|
||||||
|
|
||||||
assertEquals(singletonList(contactId1),
|
|
||||||
c.getConnectedContacts(transportId3));
|
|
||||||
assertEquals(singletonList(contactId1),
|
|
||||||
c.getConnectedOrBetterContacts(transportId3));
|
|
||||||
|
|
||||||
// Unregister the interrupted connection (transport 2)
|
|
||||||
context.checking(new Expectations() {{
|
|
||||||
oneOf(eventBus).broadcast(with(any(ConnectionClosedEvent.class)));
|
|
||||||
}});
|
|
||||||
c.unregisterConnection(contactId1, transportId2, conn2, true, false);
|
|
||||||
context.assertIsSatisfied();
|
|
||||||
|
|
||||||
assertEquals(singletonList(contactId1),
|
|
||||||
c.getConnectedContacts(transportId1));
|
|
||||||
assertEquals(singletonList(contactId1),
|
|
||||||
c.getConnectedOrBetterContacts(transportId1));
|
|
||||||
|
|
||||||
// The contact is not connected via transport 2 but is connected via a
|
|
||||||
// better transport
|
|
||||||
assertEquals(emptyList(), c.getConnectedContacts(transportId2));
|
|
||||||
assertEquals(singletonList(contactId1),
|
|
||||||
c.getConnectedOrBetterContacts(transportId2));
|
|
||||||
|
|
||||||
assertEquals(singletonList(contactId1),
|
|
||||||
c.getConnectedContacts(transportId3));
|
|
||||||
assertEquals(singletonList(contactId1),
|
|
||||||
c.getConnectedOrBetterContacts(transportId3));
|
|
||||||
}
|
|
||||||
|
|
||||||
@Test
|
|
||||||
public void testOldConnectionIsInterruptedIfNewConnectionUsesBetterTransport() {
|
|
||||||
// Prefer transport 2 to transport 1
|
|
||||||
context.checking(new Expectations() {{
|
|
||||||
allowing(pluginConfig).getTransportPreferences();
|
|
||||||
will(returnValue(
|
|
||||||
singletonMap(transportId1, singletonList(transportId2))));
|
|
||||||
}});
|
|
||||||
|
|
||||||
ConnectionRegistry c =
|
|
||||||
new ConnectionRegistryImpl(eventBus, pluginConfig);
|
|
||||||
|
|
||||||
// Connect via transport 1 (worse than 2) and set priority to high
|
|
||||||
context.checking(new Expectations() {{
|
|
||||||
oneOf(eventBus).broadcast(with(any(ConnectionOpenedEvent.class)));
|
|
||||||
oneOf(eventBus).broadcast(with(any(ContactConnectedEvent.class)));
|
|
||||||
}});
|
|
||||||
c.registerOutgoingConnection(contactId1, transportId1, conn1, high);
|
|
||||||
context.assertIsSatisfied();
|
|
||||||
|
|
||||||
assertEquals(singletonList(contactId1),
|
|
||||||
c.getConnectedContacts(transportId1));
|
|
||||||
assertEquals(singletonList(contactId1),
|
|
||||||
c.getConnectedOrBetterContacts(transportId1));
|
|
||||||
|
|
||||||
assertEquals(emptyList(), c.getConnectedContacts(transportId2));
|
|
||||||
assertEquals(emptyList(), c.getConnectedOrBetterContacts(transportId2));
|
|
||||||
|
|
||||||
// Connect via transport 2 (better than 1) and set priority to low -
|
|
||||||
// the old connection should be interrupted because it uses a worse
|
|
||||||
// transport
|
|
||||||
context.checking(new Expectations() {{
|
|
||||||
oneOf(conn1).interruptOutgoingSession();
|
|
||||||
oneOf(eventBus).broadcast(with(any(ConnectionOpenedEvent.class)));
|
|
||||||
}});
|
|
||||||
c.registerOutgoingConnection(contactId1, transportId2, conn2, low);
|
|
||||||
context.assertIsSatisfied();
|
|
||||||
|
|
||||||
assertEquals(singletonList(contactId1),
|
|
||||||
c.getConnectedContacts(transportId1));
|
|
||||||
assertEquals(singletonList(contactId1),
|
|
||||||
c.getConnectedOrBetterContacts(transportId1));
|
|
||||||
|
|
||||||
assertEquals(singletonList(contactId1),
|
|
||||||
c.getConnectedContacts(transportId2));
|
|
||||||
assertEquals(singletonList(contactId1),
|
|
||||||
c.getConnectedOrBetterContacts(transportId2));
|
|
||||||
|
|
||||||
// Connect via transport 3 (no preference) and set priority to high -
|
|
||||||
// no further interruptions
|
|
||||||
context.checking(new Expectations() {{
|
|
||||||
oneOf(eventBus).broadcast(with(any(ConnectionOpenedEvent.class)));
|
|
||||||
}});
|
|
||||||
c.registerOutgoingConnection(contactId1, transportId3, conn3, high);
|
|
||||||
context.assertIsSatisfied();
|
|
||||||
|
|
||||||
assertEquals(singletonList(contactId1),
|
|
||||||
c.getConnectedContacts(transportId1));
|
|
||||||
assertEquals(singletonList(contactId1),
|
|
||||||
c.getConnectedOrBetterContacts(transportId1));
|
|
||||||
|
|
||||||
assertEquals(singletonList(contactId1),
|
|
||||||
c.getConnectedContacts(transportId2));
|
|
||||||
assertEquals(singletonList(contactId1),
|
|
||||||
c.getConnectedOrBetterContacts(transportId2));
|
|
||||||
|
|
||||||
assertEquals(singletonList(contactId1),
|
|
||||||
c.getConnectedContacts(transportId3));
|
|
||||||
assertEquals(singletonList(contactId1),
|
|
||||||
c.getConnectedOrBetterContacts(transportId3));
|
|
||||||
|
|
||||||
// Unregister the interrupted connection (transport 1)
|
|
||||||
context.checking(new Expectations() {{
|
|
||||||
oneOf(eventBus).broadcast(with(any(ConnectionClosedEvent.class)));
|
|
||||||
}});
|
|
||||||
c.unregisterConnection(contactId1, transportId1, conn1, true, false);
|
|
||||||
context.assertIsSatisfied();
|
|
||||||
|
|
||||||
// The contact is not connected via transport 1 but is connected via a
|
|
||||||
// better transport
|
|
||||||
assertEquals(emptyList(), c.getConnectedContacts(transportId1));
|
|
||||||
assertEquals(singletonList(contactId1),
|
|
||||||
c.getConnectedOrBetterContacts(transportId1));
|
|
||||||
|
|
||||||
assertEquals(singletonList(contactId1),
|
|
||||||
c.getConnectedContacts(transportId2));
|
|
||||||
assertEquals(singletonList(contactId1),
|
|
||||||
c.getConnectedOrBetterContacts(transportId2));
|
|
||||||
|
|
||||||
assertEquals(singletonList(contactId1),
|
|
||||||
c.getConnectedContacts(transportId3));
|
|
||||||
assertEquals(singletonList(contactId1),
|
|
||||||
c.getConnectedOrBetterContacts(transportId3));
|
|
||||||
}
|
|
||||||
|
|
||||||
@Test
|
|
||||||
public void testNewConnectionIsInterruptedIfOldConnectionHasHigherPriority() {
|
|
||||||
context.checking(new Expectations() {{
|
|
||||||
allowing(pluginConfig).getTransportPreferences();
|
|
||||||
will(returnValue(emptyMap()));
|
|
||||||
}});
|
|
||||||
|
|
||||||
ConnectionRegistry c =
|
|
||||||
new ConnectionRegistryImpl(eventBus, pluginConfig);
|
|
||||||
|
|
||||||
// Register a connection with high priority
|
|
||||||
context.checking(new Expectations() {{
|
|
||||||
oneOf(eventBus).broadcast(with(any(ConnectionOpenedEvent.class)));
|
|
||||||
oneOf(eventBus).broadcast(with(any(ContactConnectedEvent.class)));
|
|
||||||
}});
|
|
||||||
c.registerOutgoingConnection(contactId1, transportId1, conn1, high);
|
|
||||||
context.assertIsSatisfied();
|
|
||||||
|
|
||||||
assertEquals(singletonList(contactId1),
|
|
||||||
c.getConnectedContacts(transportId1));
|
|
||||||
assertEquals(singletonList(contactId1),
|
|
||||||
c.getConnectedOrBetterContacts(transportId1));
|
|
||||||
|
|
||||||
// Register another connection via the same transport (no priority yet)
|
|
||||||
context.checking(new Expectations() {{
|
|
||||||
oneOf(eventBus).broadcast(with(any(ConnectionOpenedEvent.class)));
|
|
||||||
}});
|
|
||||||
c.registerIncomingConnection(contactId1, transportId1, conn2);
|
|
||||||
context.assertIsSatisfied();
|
|
||||||
|
|
||||||
assertEquals(singletonList(contactId1),
|
|
||||||
c.getConnectedContacts(transportId1));
|
|
||||||
assertEquals(singletonList(contactId1),
|
|
||||||
c.getConnectedOrBetterContacts(transportId1));
|
|
||||||
|
|
||||||
// Set the priority of the second connection to low - the second
|
|
||||||
// connection should be interrupted
|
|
||||||
context.checking(new Expectations() {{
|
|
||||||
oneOf(conn2).interruptOutgoingSession();
|
|
||||||
}});
|
|
||||||
c.setPriority(contactId1, transportId1, conn2, low);
|
|
||||||
context.assertIsSatisfied();
|
|
||||||
|
|
||||||
assertEquals(singletonList(contactId1),
|
|
||||||
c.getConnectedContacts(transportId1));
|
|
||||||
assertEquals(singletonList(contactId1),
|
|
||||||
c.getConnectedOrBetterContacts(transportId1));
|
|
||||||
|
|
||||||
// Register a third connection with low priority - it should also be
|
|
||||||
// interrupted
|
|
||||||
context.checking(new Expectations() {{
|
|
||||||
oneOf(conn3).interruptOutgoingSession();
|
|
||||||
oneOf(eventBus).broadcast(with(any(ConnectionOpenedEvent.class)));
|
|
||||||
}});
|
|
||||||
c.registerOutgoingConnection(contactId1, transportId1, conn3, low);
|
|
||||||
context.assertIsSatisfied();
|
|
||||||
|
|
||||||
assertEquals(singletonList(contactId1),
|
|
||||||
c.getConnectedContacts(transportId1));
|
|
||||||
assertEquals(singletonList(contactId1),
|
|
||||||
c.getConnectedOrBetterContacts(transportId1));
|
|
||||||
}
|
|
||||||
|
|
||||||
@Test
|
|
||||||
public void testOldConnectionIsInterruptedIfNewConnectionHasHigherPriority() {
|
|
||||||
context.checking(new Expectations() {{
|
|
||||||
allowing(pluginConfig).getTransportPreferences();
|
|
||||||
will(returnValue(emptyMap()));
|
|
||||||
}});
|
|
||||||
|
|
||||||
ConnectionRegistry c =
|
|
||||||
new ConnectionRegistryImpl(eventBus, pluginConfig);
|
|
||||||
|
|
||||||
// Register a connection with low priority
|
|
||||||
context.checking(new Expectations() {{
|
|
||||||
oneOf(eventBus).broadcast(with(any(ConnectionOpenedEvent.class)));
|
|
||||||
oneOf(eventBus).broadcast(with(any(ContactConnectedEvent.class)));
|
|
||||||
}});
|
|
||||||
c.registerOutgoingConnection(contactId1, transportId1, conn1, low);
|
|
||||||
context.assertIsSatisfied();
|
|
||||||
|
|
||||||
assertEquals(singletonList(contactId1),
|
|
||||||
c.getConnectedContacts(transportId1));
|
|
||||||
assertEquals(singletonList(contactId1),
|
|
||||||
c.getConnectedOrBetterContacts(transportId1));
|
|
||||||
|
|
||||||
// Register another connection via the same transport (no priority yet)
|
|
||||||
context.checking(new Expectations() {{
|
|
||||||
oneOf(eventBus).broadcast(with(any(ConnectionOpenedEvent.class)));
|
|
||||||
}});
|
|
||||||
c.registerIncomingConnection(contactId1, transportId1, conn2);
|
|
||||||
context.assertIsSatisfied();
|
|
||||||
|
|
||||||
assertEquals(singletonList(contactId1),
|
|
||||||
c.getConnectedContacts(transportId1));
|
|
||||||
assertEquals(singletonList(contactId1),
|
|
||||||
c.getConnectedOrBetterContacts(transportId1));
|
|
||||||
|
|
||||||
// Set the priority of the second connection to high - the first
|
|
||||||
// connection should be interrupted
|
|
||||||
context.checking(new Expectations() {{
|
|
||||||
oneOf(conn1).interruptOutgoingSession();
|
|
||||||
}});
|
|
||||||
c.setPriority(contactId1, transportId1, conn2, high);
|
|
||||||
context.assertIsSatisfied();
|
|
||||||
|
|
||||||
assertEquals(singletonList(contactId1),
|
|
||||||
c.getConnectedContacts(transportId1));
|
|
||||||
assertEquals(singletonList(contactId1),
|
|
||||||
c.getConnectedOrBetterContacts(transportId1));
|
|
||||||
}
|
|
||||||
|
|
||||||
@Test
|
|
||||||
public void testRegisterAndUnregisterPendingContacts() {
|
|
||||||
context.checking(new Expectations() {{
|
|
||||||
allowing(pluginConfig).getTransportPreferences();
|
|
||||||
will(returnValue(emptyMap()));
|
|
||||||
}});
|
|
||||||
|
|
||||||
ConnectionRegistry c =
|
|
||||||
new ConnectionRegistryImpl(eventBus, pluginConfig);
|
|
||||||
|
|
||||||
context.checking(new Expectations() {{
|
|
||||||
oneOf(eventBus).broadcast(with(any(
|
|
||||||
RendezvousConnectionOpenedEvent.class)));
|
|
||||||
}});
|
|
||||||
assertTrue(c.registerConnection(pendingContactId));
|
|
||||||
assertFalse(c.registerConnection(pendingContactId)); // Redundant
|
|
||||||
context.assertIsSatisfied();
|
|
||||||
|
|
||||||
context.checking(new Expectations() {{
|
|
||||||
oneOf(eventBus).broadcast(with(any(
|
|
||||||
RendezvousConnectionClosedEvent.class)));
|
|
||||||
}});
|
|
||||||
c.unregisterConnection(pendingContactId, true);
|
|
||||||
context.assertIsSatisfied();
|
|
||||||
|
|
||||||
try {
|
|
||||||
c.unregisterConnection(pendingContactId, true);
|
|
||||||
fail();
|
|
||||||
} catch (IllegalArgumentException expected) {
|
|
||||||
// Expected
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -2,13 +2,13 @@ package org.briarproject.bramble.contact;
|
|||||||
|
|
||||||
import org.briarproject.bramble.BrambleCoreEagerSingletons;
|
import org.briarproject.bramble.BrambleCoreEagerSingletons;
|
||||||
import org.briarproject.bramble.BrambleCoreModule;
|
import org.briarproject.bramble.BrambleCoreModule;
|
||||||
import org.briarproject.bramble.api.connection.ConnectionManager;
|
|
||||||
import org.briarproject.bramble.api.contact.ContactExchangeManager;
|
import org.briarproject.bramble.api.contact.ContactExchangeManager;
|
||||||
import org.briarproject.bramble.api.contact.ContactManager;
|
import org.briarproject.bramble.api.contact.ContactManager;
|
||||||
import org.briarproject.bramble.api.event.EventBus;
|
import org.briarproject.bramble.api.event.EventBus;
|
||||||
import org.briarproject.bramble.api.identity.IdentityManager;
|
import org.briarproject.bramble.api.identity.IdentityManager;
|
||||||
import org.briarproject.bramble.api.lifecycle.IoExecutor;
|
import org.briarproject.bramble.api.lifecycle.IoExecutor;
|
||||||
import org.briarproject.bramble.api.lifecycle.LifecycleManager;
|
import org.briarproject.bramble.api.lifecycle.LifecycleManager;
|
||||||
|
import org.briarproject.bramble.api.plugin.ConnectionManager;
|
||||||
import org.briarproject.bramble.test.BrambleCoreIntegrationTestModule;
|
import org.briarproject.bramble.test.BrambleCoreIntegrationTestModule;
|
||||||
|
|
||||||
import java.util.concurrent.Executor;
|
import java.util.concurrent.Executor;
|
||||||
|
|||||||
@@ -1,35 +1,25 @@
|
|||||||
package org.briarproject.bramble.crypto;
|
package org.briarproject.bramble.crypto;
|
||||||
|
|
||||||
import org.briarproject.bramble.api.crypto.DecryptionException;
|
|
||||||
import org.briarproject.bramble.api.crypto.KeyStrengthener;
|
|
||||||
import org.briarproject.bramble.api.crypto.SecretKey;
|
|
||||||
import org.briarproject.bramble.system.SystemClock;
|
import org.briarproject.bramble.system.SystemClock;
|
||||||
import org.briarproject.bramble.test.BrambleMockTestCase;
|
import org.briarproject.bramble.test.BrambleTestCase;
|
||||||
import org.briarproject.bramble.test.TestSecureRandomProvider;
|
import org.briarproject.bramble.test.TestSecureRandomProvider;
|
||||||
import org.jmock.Expectations;
|
import org.briarproject.bramble.test.TestUtils;
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
|
|
||||||
import static org.briarproject.bramble.api.crypto.DecryptionResult.INVALID_CIPHERTEXT;
|
import java.util.Random;
|
||||||
import static org.briarproject.bramble.api.crypto.DecryptionResult.INVALID_PASSWORD;
|
|
||||||
import static org.briarproject.bramble.api.crypto.DecryptionResult.KEY_STRENGTHENER_ERROR;
|
|
||||||
import static org.briarproject.bramble.test.TestUtils.getRandomBytes;
|
|
||||||
import static org.briarproject.bramble.test.TestUtils.getSecretKey;
|
|
||||||
import static org.junit.Assert.assertArrayEquals;
|
import static org.junit.Assert.assertArrayEquals;
|
||||||
import static org.junit.Assert.assertEquals;
|
import static org.junit.Assert.assertNull;
|
||||||
import static org.junit.Assert.fail;
|
|
||||||
|
|
||||||
public class PasswordBasedEncryptionTest extends BrambleMockTestCase {
|
public class PasswordBasedEncryptionTest extends BrambleTestCase {
|
||||||
|
|
||||||
private final KeyStrengthener keyStrengthener =
|
|
||||||
context.mock(KeyStrengthener.class);
|
|
||||||
|
|
||||||
private final CryptoComponentImpl crypto =
|
private final CryptoComponentImpl crypto =
|
||||||
new CryptoComponentImpl(new TestSecureRandomProvider(),
|
new CryptoComponentImpl(new TestSecureRandomProvider(),
|
||||||
new ScryptKdf(new SystemClock()));
|
new ScryptKdf(new SystemClock()));
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void testEncryptionAndDecryption() throws Exception {
|
public void testEncryptionAndDecryption() {
|
||||||
byte[] input = getRandomBytes(1234);
|
byte[] input = TestUtils.getRandomBytes(1234);
|
||||||
String password = "password";
|
String password = "password";
|
||||||
byte[] ciphertext = crypto.encryptWithPassword(input, password, null);
|
byte[] ciphertext = crypto.encryptWithPassword(input, password, null);
|
||||||
byte[] output = crypto.decryptWithPassword(ciphertext, password, null);
|
byte[] output = crypto.decryptWithPassword(ciphertext, password, null);
|
||||||
@@ -37,80 +27,14 @@ public class PasswordBasedEncryptionTest extends BrambleMockTestCase {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void testInvalidFormatVersionThrowsException() {
|
public void testInvalidCiphertextReturnsNull() {
|
||||||
byte[] input = getRandomBytes(1234);
|
byte[] input = TestUtils.getRandomBytes(1234);
|
||||||
String password = "password";
|
String password = "password";
|
||||||
byte[] ciphertext = crypto.encryptWithPassword(input, password, null);
|
byte[] ciphertext = crypto.encryptWithPassword(input, password, null);
|
||||||
|
// Modify the ciphertext
|
||||||
// Modify the format version
|
int position = new Random().nextInt(ciphertext.length);
|
||||||
ciphertext[0] ^= (byte) 0xFF;
|
ciphertext[position] = (byte) (ciphertext[position] ^ 0xFF);
|
||||||
try {
|
byte[] output = crypto.decryptWithPassword(ciphertext, password, null);
|
||||||
crypto.decryptWithPassword(ciphertext, password, null);
|
assertNull(output);
|
||||||
fail();
|
|
||||||
} catch (DecryptionException expected) {
|
|
||||||
assertEquals(INVALID_CIPHERTEXT, expected.getDecryptionResult());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@Test
|
|
||||||
public void testInvalidPasswordThrowsException() {
|
|
||||||
byte[] input = getRandomBytes(1234);
|
|
||||||
byte[] ciphertext = crypto.encryptWithPassword(input, "password", null);
|
|
||||||
|
|
||||||
// Try to decrypt with the wrong password
|
|
||||||
try {
|
|
||||||
crypto.decryptWithPassword(ciphertext, "wrong", null);
|
|
||||||
fail();
|
|
||||||
} catch (DecryptionException expected) {
|
|
||||||
assertEquals(INVALID_PASSWORD, expected.getDecryptionResult());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@Test
|
|
||||||
public void testMissingKeyStrengthenerThrowsException() {
|
|
||||||
SecretKey strengthened = getSecretKey();
|
|
||||||
context.checking(new Expectations() {{
|
|
||||||
oneOf(keyStrengthener).strengthenKey(with(any(SecretKey.class)));
|
|
||||||
will(returnValue(strengthened));
|
|
||||||
}});
|
|
||||||
|
|
||||||
// Use the key strengthener during encryption
|
|
||||||
byte[] input = getRandomBytes(1234);
|
|
||||||
String password = "password";
|
|
||||||
byte[] ciphertext =
|
|
||||||
crypto.encryptWithPassword(input, password, keyStrengthener);
|
|
||||||
|
|
||||||
// The key strengthener is missing during decryption
|
|
||||||
try {
|
|
||||||
crypto.decryptWithPassword(ciphertext, password, null);
|
|
||||||
fail();
|
|
||||||
} catch (DecryptionException expected) {
|
|
||||||
assertEquals(KEY_STRENGTHENER_ERROR, expected.getDecryptionResult());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@Test
|
|
||||||
public void testKeyStrengthenerFailureThrowsException() {
|
|
||||||
SecretKey strengthened = getSecretKey();
|
|
||||||
context.checking(new Expectations() {{
|
|
||||||
oneOf(keyStrengthener).strengthenKey(with(any(SecretKey.class)));
|
|
||||||
will(returnValue(strengthened));
|
|
||||||
oneOf(keyStrengthener).isInitialised();
|
|
||||||
will(returnValue(false));
|
|
||||||
}});
|
|
||||||
|
|
||||||
// Use the key strengthener during encryption
|
|
||||||
byte[] input = getRandomBytes(1234);
|
|
||||||
String password = "password";
|
|
||||||
byte[] ciphertext =
|
|
||||||
crypto.encryptWithPassword(input, password, keyStrengthener);
|
|
||||||
|
|
||||||
// The key strengthener fails during decryption
|
|
||||||
try {
|
|
||||||
crypto.decryptWithPassword(ciphertext, password, keyStrengthener);
|
|
||||||
fail();
|
|
||||||
} catch (DecryptionException expected) {
|
|
||||||
assertEquals(KEY_STRENGTHENER_ERROR, expected.getDecryptionResult());
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,143 +0,0 @@
|
|||||||
package org.briarproject.bramble.io;
|
|
||||||
|
|
||||||
import org.briarproject.bramble.test.BrambleTestCase;
|
|
||||||
import org.briarproject.bramble.test.SettableClock;
|
|
||||||
import org.junit.Before;
|
|
||||||
import org.junit.Test;
|
|
||||||
|
|
||||||
import java.io.IOException;
|
|
||||||
import java.io.InputStream;
|
|
||||||
import java.util.concurrent.CountDownLatch;
|
|
||||||
import java.util.concurrent.atomic.AtomicBoolean;
|
|
||||||
import java.util.concurrent.atomic.AtomicLong;
|
|
||||||
|
|
||||||
import static java.util.concurrent.TimeUnit.MINUTES;
|
|
||||||
import static java.util.concurrent.TimeUnit.SECONDS;
|
|
||||||
import static org.junit.Assert.assertEquals;
|
|
||||||
import static org.junit.Assert.assertFalse;
|
|
||||||
import static org.junit.Assert.assertTrue;
|
|
||||||
import static org.junit.Assert.fail;
|
|
||||||
|
|
||||||
public class TimeoutInputStreamTest extends BrambleTestCase {
|
|
||||||
|
|
||||||
private static final long TIMEOUT_MS = MINUTES.toMillis(1);
|
|
||||||
|
|
||||||
private final long now = System.currentTimeMillis();
|
|
||||||
|
|
||||||
private AtomicLong time;
|
|
||||||
private UnresponsiveInputStream in;
|
|
||||||
private AtomicBoolean listenerCalled;
|
|
||||||
private TimeoutInputStream stream;
|
|
||||||
private CountDownLatch readReturned;
|
|
||||||
|
|
||||||
@Before
|
|
||||||
public void setUp() {
|
|
||||||
time = new AtomicLong(now);
|
|
||||||
in = new UnresponsiveInputStream();
|
|
||||||
listenerCalled = new AtomicBoolean(false);
|
|
||||||
stream = new TimeoutInputStream(new SettableClock(time), in,
|
|
||||||
TIMEOUT_MS, stream -> listenerCalled.set(true));
|
|
||||||
readReturned = new CountDownLatch(1);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Test
|
|
||||||
public void testTimeoutIsReportedIfReadDoesNotReturn() throws Exception {
|
|
||||||
startReading();
|
|
||||||
try {
|
|
||||||
// The stream should not report a timeout
|
|
||||||
assertFalse(stream.hasTimedOut());
|
|
||||||
|
|
||||||
// Time passes
|
|
||||||
time.set(now + TIMEOUT_MS);
|
|
||||||
|
|
||||||
// The stream still shouldn't report a timeout
|
|
||||||
assertFalse(stream.hasTimedOut());
|
|
||||||
|
|
||||||
// Time passes
|
|
||||||
time.set(now + TIMEOUT_MS + 1);
|
|
||||||
|
|
||||||
// The stream should report a timeout
|
|
||||||
assertTrue(stream.hasTimedOut());
|
|
||||||
|
|
||||||
// The listener should not have been called yet
|
|
||||||
assertFalse(listenerCalled.get());
|
|
||||||
|
|
||||||
// Close the stream
|
|
||||||
stream.close();
|
|
||||||
|
|
||||||
// The listener should have been called
|
|
||||||
assertTrue(listenerCalled.get());
|
|
||||||
} finally {
|
|
||||||
// Allow the read to return
|
|
||||||
in.readFinished.countDown();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@Test
|
|
||||||
public void testTimeoutIsNotReportedIfReadReturns() throws Exception {
|
|
||||||
startReading();
|
|
||||||
try {
|
|
||||||
// The stream should not report a timeout
|
|
||||||
assertFalse(stream.hasTimedOut());
|
|
||||||
|
|
||||||
// Time passes
|
|
||||||
time.set(now + TIMEOUT_MS);
|
|
||||||
|
|
||||||
// The stream still shouldn't report a timeout
|
|
||||||
assertFalse(stream.hasTimedOut());
|
|
||||||
|
|
||||||
// Allow the read to finish and wait for it to return
|
|
||||||
in.readFinished.countDown();
|
|
||||||
readReturned.await(10, SECONDS);
|
|
||||||
|
|
||||||
// Time passes
|
|
||||||
time.set(now + TIMEOUT_MS + 1);
|
|
||||||
|
|
||||||
// The stream should not report a timeout as the read has returned
|
|
||||||
assertFalse(stream.hasTimedOut());
|
|
||||||
|
|
||||||
// The listener should not have been called yet
|
|
||||||
assertFalse(listenerCalled.get());
|
|
||||||
|
|
||||||
// Close the stream
|
|
||||||
stream.close();
|
|
||||||
|
|
||||||
// The listener should have been called
|
|
||||||
assertTrue(listenerCalled.get());
|
|
||||||
} finally {
|
|
||||||
// Allow the read to return in case an assertion was thrown
|
|
||||||
in.readFinished.countDown();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private void startReading() throws Exception {
|
|
||||||
// Start a background thread to read from the unresponsive stream
|
|
||||||
new Thread(() -> {
|
|
||||||
try {
|
|
||||||
assertEquals(123, stream.read());
|
|
||||||
readReturned.countDown();
|
|
||||||
} catch (IOException e) {
|
|
||||||
fail();
|
|
||||||
}
|
|
||||||
}).start();
|
|
||||||
// Wait for the background thread to start reading
|
|
||||||
assertTrue(in.readStarted.await(10, SECONDS));
|
|
||||||
}
|
|
||||||
|
|
||||||
private class UnresponsiveInputStream extends InputStream {
|
|
||||||
|
|
||||||
private final CountDownLatch readStarted = new CountDownLatch(1);
|
|
||||||
private final CountDownLatch readFinished = new CountDownLatch(1);
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public int read() throws IOException {
|
|
||||||
readStarted.countDown();
|
|
||||||
try {
|
|
||||||
readFinished.await();
|
|
||||||
return 123;
|
|
||||||
} catch (InterruptedException e) {
|
|
||||||
throw new IOException(e);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -0,0 +1,149 @@
|
|||||||
|
package org.briarproject.bramble.plugin;
|
||||||
|
|
||||||
|
import org.briarproject.bramble.api.contact.ContactId;
|
||||||
|
import org.briarproject.bramble.api.contact.PendingContactId;
|
||||||
|
import org.briarproject.bramble.api.event.EventBus;
|
||||||
|
import org.briarproject.bramble.api.plugin.ConnectionRegistry;
|
||||||
|
import org.briarproject.bramble.api.plugin.TransportId;
|
||||||
|
import org.briarproject.bramble.api.plugin.event.ConnectionClosedEvent;
|
||||||
|
import org.briarproject.bramble.api.plugin.event.ConnectionOpenedEvent;
|
||||||
|
import org.briarproject.bramble.api.plugin.event.ContactConnectedEvent;
|
||||||
|
import org.briarproject.bramble.api.plugin.event.ContactDisconnectedEvent;
|
||||||
|
import org.briarproject.bramble.api.rendezvous.event.RendezvousConnectionClosedEvent;
|
||||||
|
import org.briarproject.bramble.api.rendezvous.event.RendezvousConnectionOpenedEvent;
|
||||||
|
import org.briarproject.bramble.test.BrambleMockTestCase;
|
||||||
|
import org.jmock.Expectations;
|
||||||
|
import org.junit.Test;
|
||||||
|
|
||||||
|
import java.util.Collection;
|
||||||
|
|
||||||
|
import static java.util.Collections.emptyList;
|
||||||
|
import static java.util.Collections.singletonList;
|
||||||
|
import static org.briarproject.bramble.test.TestUtils.getContactId;
|
||||||
|
import static org.briarproject.bramble.test.TestUtils.getRandomId;
|
||||||
|
import static org.briarproject.bramble.test.TestUtils.getTransportId;
|
||||||
|
import static org.junit.Assert.assertEquals;
|
||||||
|
import static org.junit.Assert.assertFalse;
|
||||||
|
import static org.junit.Assert.assertTrue;
|
||||||
|
import static org.junit.Assert.fail;
|
||||||
|
|
||||||
|
public class ConnectionRegistryImplTest extends BrambleMockTestCase {
|
||||||
|
|
||||||
|
private final EventBus eventBus = context.mock(EventBus.class);
|
||||||
|
|
||||||
|
private final ContactId contactId = getContactId();
|
||||||
|
private final ContactId contactId1 = getContactId();
|
||||||
|
private final TransportId transportId = getTransportId();
|
||||||
|
private final TransportId transportId1 = getTransportId();
|
||||||
|
private final PendingContactId pendingContactId =
|
||||||
|
new PendingContactId(getRandomId());
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testRegisterAndUnregister() {
|
||||||
|
ConnectionRegistry c = new ConnectionRegistryImpl(eventBus);
|
||||||
|
|
||||||
|
// The registry should be empty
|
||||||
|
assertEquals(emptyList(), c.getConnectedContacts(transportId));
|
||||||
|
assertEquals(emptyList(), c.getConnectedContacts(transportId1));
|
||||||
|
|
||||||
|
// Check that a registered connection shows up - this should
|
||||||
|
// broadcast a ConnectionOpenedEvent and a ContactConnectedEvent
|
||||||
|
context.checking(new Expectations() {{
|
||||||
|
oneOf(eventBus).broadcast(with(any(ConnectionOpenedEvent.class)));
|
||||||
|
oneOf(eventBus).broadcast(with(any(ContactConnectedEvent.class)));
|
||||||
|
}});
|
||||||
|
c.registerConnection(contactId, transportId, true);
|
||||||
|
assertEquals(singletonList(contactId),
|
||||||
|
c.getConnectedContacts(transportId));
|
||||||
|
assertEquals(emptyList(), c.getConnectedContacts(transportId1));
|
||||||
|
context.assertIsSatisfied();
|
||||||
|
|
||||||
|
// Register an identical connection - this should broadcast a
|
||||||
|
// ConnectionOpenedEvent and lookup should be unaffected
|
||||||
|
context.checking(new Expectations() {{
|
||||||
|
oneOf(eventBus).broadcast(with(any(ConnectionOpenedEvent.class)));
|
||||||
|
}});
|
||||||
|
c.registerConnection(contactId, transportId, true);
|
||||||
|
assertEquals(singletonList(contactId),
|
||||||
|
c.getConnectedContacts(transportId));
|
||||||
|
assertEquals(emptyList(), c.getConnectedContacts(transportId1));
|
||||||
|
context.assertIsSatisfied();
|
||||||
|
|
||||||
|
// Unregister one of the connections - this should broadcast a
|
||||||
|
// ConnectionClosedEvent and lookup should be unaffected
|
||||||
|
context.checking(new Expectations() {{
|
||||||
|
oneOf(eventBus).broadcast(with(any(ConnectionClosedEvent.class)));
|
||||||
|
}});
|
||||||
|
c.unregisterConnection(contactId, transportId, true);
|
||||||
|
assertEquals(singletonList(contactId),
|
||||||
|
c.getConnectedContacts(transportId));
|
||||||
|
assertEquals(emptyList(), c.getConnectedContacts(transportId1));
|
||||||
|
context.assertIsSatisfied();
|
||||||
|
|
||||||
|
// Unregister the other connection - this should broadcast a
|
||||||
|
// ConnectionClosedEvent and a ContactDisconnectedEvent
|
||||||
|
context.checking(new Expectations() {{
|
||||||
|
oneOf(eventBus).broadcast(with(any(ConnectionClosedEvent.class)));
|
||||||
|
oneOf(eventBus).broadcast(with(any(
|
||||||
|
ContactDisconnectedEvent.class)));
|
||||||
|
}});
|
||||||
|
c.unregisterConnection(contactId, transportId, true);
|
||||||
|
assertEquals(emptyList(), c.getConnectedContacts(transportId));
|
||||||
|
assertEquals(emptyList(), c.getConnectedContacts(transportId1));
|
||||||
|
context.assertIsSatisfied();
|
||||||
|
|
||||||
|
// Try to unregister the connection again - exception should be thrown
|
||||||
|
try {
|
||||||
|
c.unregisterConnection(contactId, transportId, true);
|
||||||
|
fail();
|
||||||
|
} catch (IllegalArgumentException expected) {
|
||||||
|
// Expected
|
||||||
|
}
|
||||||
|
|
||||||
|
// Register both contacts with one transport, one contact with both -
|
||||||
|
// this should broadcast three ConnectionOpenedEvents and two
|
||||||
|
// ContactConnectedEvents
|
||||||
|
context.checking(new Expectations() {{
|
||||||
|
exactly(3).of(eventBus).broadcast(with(any(
|
||||||
|
ConnectionOpenedEvent.class)));
|
||||||
|
exactly(2).of(eventBus).broadcast(with(any(
|
||||||
|
ContactConnectedEvent.class)));
|
||||||
|
}});
|
||||||
|
c.registerConnection(contactId, transportId, true);
|
||||||
|
c.registerConnection(contactId1, transportId, true);
|
||||||
|
c.registerConnection(contactId1, transportId1, true);
|
||||||
|
Collection<ContactId> connected = c.getConnectedContacts(transportId);
|
||||||
|
assertEquals(2, connected.size());
|
||||||
|
assertTrue(connected.contains(contactId));
|
||||||
|
assertTrue(connected.contains(contactId1));
|
||||||
|
assertEquals(singletonList(contactId1),
|
||||||
|
c.getConnectedContacts(transportId1));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testRegisterAndUnregisterPendingContacts() {
|
||||||
|
ConnectionRegistry c = new ConnectionRegistryImpl(eventBus);
|
||||||
|
|
||||||
|
context.checking(new Expectations() {{
|
||||||
|
oneOf(eventBus).broadcast(with(any(
|
||||||
|
RendezvousConnectionOpenedEvent.class)));
|
||||||
|
}});
|
||||||
|
assertTrue(c.registerConnection(pendingContactId));
|
||||||
|
assertFalse(c.registerConnection(pendingContactId)); // Redundant
|
||||||
|
context.assertIsSatisfied();
|
||||||
|
|
||||||
|
context.checking(new Expectations() {{
|
||||||
|
oneOf(eventBus).broadcast(with(any(
|
||||||
|
RendezvousConnectionClosedEvent.class)));
|
||||||
|
}});
|
||||||
|
c.unregisterConnection(pendingContactId, true);
|
||||||
|
context.assertIsSatisfied();
|
||||||
|
|
||||||
|
try {
|
||||||
|
c.unregisterConnection(pendingContactId, true);
|
||||||
|
fail();
|
||||||
|
} catch (IllegalArgumentException expected) {
|
||||||
|
// Expected
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
package org.briarproject.bramble.plugin;
|
package org.briarproject.bramble.plugin;
|
||||||
|
|
||||||
import org.briarproject.bramble.api.connection.ConnectionManager;
|
|
||||||
import org.briarproject.bramble.api.event.EventBus;
|
import org.briarproject.bramble.api.event.EventBus;
|
||||||
|
import org.briarproject.bramble.api.plugin.ConnectionManager;
|
||||||
import org.briarproject.bramble.api.plugin.PluginCallback;
|
import org.briarproject.bramble.api.plugin.PluginCallback;
|
||||||
import org.briarproject.bramble.api.plugin.PluginConfig;
|
import org.briarproject.bramble.api.plugin.PluginConfig;
|
||||||
import org.briarproject.bramble.api.plugin.PluginException;
|
import org.briarproject.bramble.api.plugin.PluginException;
|
||||||
|
|||||||
@@ -1,10 +1,10 @@
|
|||||||
package org.briarproject.bramble.plugin;
|
package org.briarproject.bramble.plugin;
|
||||||
|
|
||||||
import org.briarproject.bramble.api.connection.ConnectionManager;
|
|
||||||
import org.briarproject.bramble.api.connection.ConnectionRegistry;
|
|
||||||
import org.briarproject.bramble.api.contact.ContactId;
|
import org.briarproject.bramble.api.contact.ContactId;
|
||||||
import org.briarproject.bramble.api.contact.event.ContactAddedEvent;
|
import org.briarproject.bramble.api.contact.event.ContactAddedEvent;
|
||||||
import org.briarproject.bramble.api.plugin.ConnectionHandler;
|
import org.briarproject.bramble.api.plugin.ConnectionHandler;
|
||||||
|
import org.briarproject.bramble.api.plugin.ConnectionManager;
|
||||||
|
import org.briarproject.bramble.api.plugin.ConnectionRegistry;
|
||||||
import org.briarproject.bramble.api.plugin.Plugin;
|
import org.briarproject.bramble.api.plugin.Plugin;
|
||||||
import org.briarproject.bramble.api.plugin.PluginManager;
|
import org.briarproject.bramble.api.plugin.PluginManager;
|
||||||
import org.briarproject.bramble.api.plugin.TransportConnectionWriter;
|
import org.briarproject.bramble.api.plugin.TransportConnectionWriter;
|
||||||
@@ -157,21 +157,7 @@ public class PollerImplTest extends BrambleMockTestCase {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void testRescheduleOnOutgoingConnectionClosed() {
|
public void testRescheduleAndReconnectOnConnectionClosed()
|
||||||
DuplexPlugin plugin = context.mock(DuplexPlugin.class);
|
|
||||||
|
|
||||||
context.checking(new Expectations() {{
|
|
||||||
allowing(plugin).getId();
|
|
||||||
will(returnValue(transportId));
|
|
||||||
}});
|
|
||||||
expectReschedule(plugin);
|
|
||||||
|
|
||||||
poller.eventOccurred(new ConnectionClosedEvent(contactId, transportId,
|
|
||||||
false, false));
|
|
||||||
}
|
|
||||||
|
|
||||||
@Test
|
|
||||||
public void testRescheduleAndReconnectOnOutgoingConnectionFailed()
|
|
||||||
throws Exception {
|
throws Exception {
|
||||||
DuplexPlugin plugin = context.mock(DuplexPlugin.class);
|
DuplexPlugin plugin = context.mock(DuplexPlugin.class);
|
||||||
DuplexTransportConnection duplexConnection =
|
DuplexTransportConnection duplexConnection =
|
||||||
@@ -180,40 +166,45 @@ public class PollerImplTest extends BrambleMockTestCase {
|
|||||||
context.checking(new Expectations() {{
|
context.checking(new Expectations() {{
|
||||||
allowing(plugin).getId();
|
allowing(plugin).getId();
|
||||||
will(returnValue(transportId));
|
will(returnValue(transportId));
|
||||||
|
// reschedule()
|
||||||
|
// Get the plugin
|
||||||
|
oneOf(pluginManager).getPlugin(transportId);
|
||||||
|
will(returnValue(plugin));
|
||||||
|
// The plugin supports polling
|
||||||
|
oneOf(plugin).shouldPoll();
|
||||||
|
will(returnValue(true));
|
||||||
|
// Get the plugin
|
||||||
|
oneOf(pluginManager).getPlugin(transportId);
|
||||||
|
will(returnValue(plugin));
|
||||||
|
// The plugin supports polling
|
||||||
|
oneOf(plugin).shouldPoll();
|
||||||
|
will(returnValue(true));
|
||||||
|
// Schedule the next poll
|
||||||
|
oneOf(plugin).getPollingInterval();
|
||||||
|
will(returnValue(pollingInterval));
|
||||||
|
oneOf(clock).currentTimeMillis();
|
||||||
|
will(returnValue(now));
|
||||||
|
oneOf(scheduler).schedule(with(any(Runnable.class)),
|
||||||
|
with((long) pollingInterval), with(MILLISECONDS));
|
||||||
|
will(returnValue(future));
|
||||||
|
// connectToContact()
|
||||||
|
// Check whether the contact is already connected
|
||||||
|
oneOf(connectionRegistry).isConnected(contactId, transportId);
|
||||||
|
will(returnValue(false));
|
||||||
|
// Get the transport properties
|
||||||
|
oneOf(transportPropertyManager).getRemoteProperties(contactId,
|
||||||
|
transportId);
|
||||||
|
will(returnValue(properties));
|
||||||
|
// Connect to the contact
|
||||||
|
oneOf(plugin).createConnection(properties);
|
||||||
|
will(returnValue(duplexConnection));
|
||||||
|
// Pass the connection to the connection manager
|
||||||
|
oneOf(connectionManager).manageOutgoingConnection(contactId,
|
||||||
|
transportId, duplexConnection);
|
||||||
}});
|
}});
|
||||||
expectReschedule(plugin);
|
|
||||||
expectReconnect(plugin, duplexConnection);
|
|
||||||
|
|
||||||
poller.eventOccurred(new ConnectionClosedEvent(contactId, transportId,
|
poller.eventOccurred(new ConnectionClosedEvent(contactId, transportId,
|
||||||
false, true));
|
false));
|
||||||
}
|
|
||||||
|
|
||||||
@Test
|
|
||||||
public void testRescheduleOnIncomingConnectionClosed() {
|
|
||||||
DuplexPlugin plugin = context.mock(DuplexPlugin.class);
|
|
||||||
|
|
||||||
context.checking(new Expectations() {{
|
|
||||||
allowing(plugin).getId();
|
|
||||||
will(returnValue(transportId));
|
|
||||||
}});
|
|
||||||
expectReschedule(plugin);
|
|
||||||
|
|
||||||
poller.eventOccurred(new ConnectionClosedEvent(contactId, transportId,
|
|
||||||
true, false));
|
|
||||||
}
|
|
||||||
|
|
||||||
@Test
|
|
||||||
public void testRescheduleOnIncomingConnectionFailed() {
|
|
||||||
DuplexPlugin plugin = context.mock(DuplexPlugin.class);
|
|
||||||
|
|
||||||
context.checking(new Expectations() {{
|
|
||||||
allowing(plugin).getId();
|
|
||||||
will(returnValue(transportId));
|
|
||||||
}});
|
|
||||||
expectReschedule(plugin);
|
|
||||||
|
|
||||||
poller.eventOccurred(new ConnectionClosedEvent(contactId, transportId,
|
|
||||||
true, false));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
@@ -363,7 +354,7 @@ public class PollerImplTest extends BrambleMockTestCase {
|
|||||||
// Get the transport properties and connected contacts
|
// Get the transport properties and connected contacts
|
||||||
oneOf(transportPropertyManager).getRemoteProperties(transportId);
|
oneOf(transportPropertyManager).getRemoteProperties(transportId);
|
||||||
will(returnValue(singletonMap(contactId, properties)));
|
will(returnValue(singletonMap(contactId, properties)));
|
||||||
oneOf(connectionRegistry).getConnectedOrBetterContacts(transportId);
|
oneOf(connectionRegistry).getConnectedContacts(transportId);
|
||||||
will(returnValue(emptyList()));
|
will(returnValue(emptyList()));
|
||||||
// Poll the plugin
|
// Poll the plugin
|
||||||
oneOf(plugin).poll(with(collectionOf(
|
oneOf(plugin).poll(with(collectionOf(
|
||||||
@@ -406,7 +397,7 @@ public class PollerImplTest extends BrambleMockTestCase {
|
|||||||
// Get the transport properties and connected contacts
|
// Get the transport properties and connected contacts
|
||||||
oneOf(transportPropertyManager).getRemoteProperties(transportId);
|
oneOf(transportPropertyManager).getRemoteProperties(transportId);
|
||||||
will(returnValue(singletonMap(contactId, properties)));
|
will(returnValue(singletonMap(contactId, properties)));
|
||||||
oneOf(connectionRegistry).getConnectedOrBetterContacts(transportId);
|
oneOf(connectionRegistry).getConnectedContacts(transportId);
|
||||||
will(returnValue(singletonList(contactId)));
|
will(returnValue(singletonList(contactId)));
|
||||||
// All contacts are connected, so don't poll the plugin
|
// All contacts are connected, so don't poll the plugin
|
||||||
}});
|
}});
|
||||||
@@ -440,48 +431,4 @@ public class PollerImplTest extends BrambleMockTestCase {
|
|||||||
poller.eventOccurred(new TransportActiveEvent(transportId));
|
poller.eventOccurred(new TransportActiveEvent(transportId));
|
||||||
poller.eventOccurred(new TransportInactiveEvent(transportId));
|
poller.eventOccurred(new TransportInactiveEvent(transportId));
|
||||||
}
|
}
|
||||||
|
|
||||||
private void expectReschedule(Plugin plugin) {
|
|
||||||
context.checking(new Expectations() {{
|
|
||||||
// Get the plugin
|
|
||||||
oneOf(pluginManager).getPlugin(transportId);
|
|
||||||
will(returnValue(plugin));
|
|
||||||
// The plugin supports polling
|
|
||||||
oneOf(plugin).shouldPoll();
|
|
||||||
will(returnValue(true));
|
|
||||||
// Schedule the next poll
|
|
||||||
oneOf(plugin).getPollingInterval();
|
|
||||||
will(returnValue(pollingInterval));
|
|
||||||
oneOf(clock).currentTimeMillis();
|
|
||||||
will(returnValue(now));
|
|
||||||
oneOf(scheduler).schedule(with(any(Runnable.class)),
|
|
||||||
with((long) pollingInterval), with(MILLISECONDS));
|
|
||||||
will(returnValue(future));
|
|
||||||
}});
|
|
||||||
}
|
|
||||||
|
|
||||||
private void expectReconnect(DuplexPlugin plugin,
|
|
||||||
DuplexTransportConnection duplexConnection) throws Exception {
|
|
||||||
context.checking(new Expectations() {{
|
|
||||||
// Get the plugin
|
|
||||||
oneOf(pluginManager).getPlugin(transportId);
|
|
||||||
will(returnValue(plugin));
|
|
||||||
// The plugin supports polling
|
|
||||||
oneOf(plugin).shouldPoll();
|
|
||||||
will(returnValue(true));
|
|
||||||
// Check whether the contact is already connected
|
|
||||||
oneOf(connectionRegistry).isConnected(contactId, transportId);
|
|
||||||
will(returnValue(false));
|
|
||||||
// Get the transport properties
|
|
||||||
oneOf(transportPropertyManager).getRemoteProperties(contactId,
|
|
||||||
transportId);
|
|
||||||
will(returnValue(properties));
|
|
||||||
// Connect to the contact
|
|
||||||
oneOf(plugin).createConnection(properties);
|
|
||||||
will(returnValue(duplexConnection));
|
|
||||||
// Pass the connection to the connection manager
|
|
||||||
oneOf(connectionManager).manageOutgoingConnection(contactId,
|
|
||||||
transportId, duplexConnection);
|
|
||||||
}});
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -8,11 +8,12 @@ import org.briarproject.bramble.api.plugin.Plugin.State;
|
|||||||
import org.briarproject.bramble.api.plugin.PluginCallback;
|
import org.briarproject.bramble.api.plugin.PluginCallback;
|
||||||
import org.briarproject.bramble.api.plugin.TransportConnectionReader;
|
import org.briarproject.bramble.api.plugin.TransportConnectionReader;
|
||||||
import org.briarproject.bramble.api.plugin.TransportConnectionWriter;
|
import org.briarproject.bramble.api.plugin.TransportConnectionWriter;
|
||||||
|
import org.briarproject.bramble.api.plugin.duplex.DuplexPlugin;
|
||||||
import org.briarproject.bramble.api.plugin.duplex.DuplexTransportConnection;
|
import org.briarproject.bramble.api.plugin.duplex.DuplexTransportConnection;
|
||||||
import org.briarproject.bramble.api.properties.TransportProperties;
|
import org.briarproject.bramble.api.properties.TransportProperties;
|
||||||
import org.briarproject.bramble.api.settings.Settings;
|
import org.briarproject.bramble.api.settings.Settings;
|
||||||
|
import org.briarproject.bramble.plugin.tcp.LanTcpPlugin.LanAddressComparator;
|
||||||
import org.briarproject.bramble.test.BrambleTestCase;
|
import org.briarproject.bramble.test.BrambleTestCase;
|
||||||
import org.junit.Before;
|
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
@@ -22,6 +23,7 @@ import java.net.InetSocketAddress;
|
|||||||
import java.net.NetworkInterface;
|
import java.net.NetworkInterface;
|
||||||
import java.net.ServerSocket;
|
import java.net.ServerSocket;
|
||||||
import java.net.Socket;
|
import java.net.Socket;
|
||||||
|
import java.util.Comparator;
|
||||||
import java.util.concurrent.CountDownLatch;
|
import java.util.concurrent.CountDownLatch;
|
||||||
import java.util.concurrent.ExecutorService;
|
import java.util.concurrent.ExecutorService;
|
||||||
import java.util.concurrent.atomic.AtomicBoolean;
|
import java.util.concurrent.atomic.AtomicBoolean;
|
||||||
@@ -33,89 +35,56 @@ import static java.util.concurrent.TimeUnit.SECONDS;
|
|||||||
import static org.briarproject.bramble.api.keyagreement.KeyAgreementConstants.COMMIT_LENGTH;
|
import static org.briarproject.bramble.api.keyagreement.KeyAgreementConstants.COMMIT_LENGTH;
|
||||||
import static org.briarproject.bramble.api.keyagreement.KeyAgreementConstants.TRANSPORT_ID_LAN;
|
import static org.briarproject.bramble.api.keyagreement.KeyAgreementConstants.TRANSPORT_ID_LAN;
|
||||||
import static org.briarproject.bramble.api.plugin.Plugin.PREF_PLUGIN_ENABLE;
|
import static org.briarproject.bramble.api.plugin.Plugin.PREF_PLUGIN_ENABLE;
|
||||||
import static org.briarproject.bramble.plugin.tcp.LanTcpPlugin.areAddressesInSameNetwork;
|
|
||||||
import static org.junit.Assert.assertEquals;
|
import static org.junit.Assert.assertEquals;
|
||||||
import static org.junit.Assert.assertFalse;
|
import static org.junit.Assert.assertFalse;
|
||||||
import static org.junit.Assert.assertNotNull;
|
import static org.junit.Assert.assertNotNull;
|
||||||
import static org.junit.Assert.assertTrue;
|
import static org.junit.Assert.assertTrue;
|
||||||
import static org.junit.Assume.assumeTrue;
|
|
||||||
|
|
||||||
public class LanTcpPluginTest extends BrambleTestCase {
|
public class LanTcpPluginTest extends BrambleTestCase {
|
||||||
|
|
||||||
private final Backoff backoff = new TestBackoff();
|
private final Backoff backoff = new TestBackoff();
|
||||||
private final ExecutorService ioExecutor = newCachedThreadPool();
|
private final ExecutorService ioExecutor = newCachedThreadPool();
|
||||||
|
|
||||||
private Callback callback = null;
|
|
||||||
private LanTcpPlugin plugin = null;
|
|
||||||
|
|
||||||
@Before
|
|
||||||
public void setUp() {
|
|
||||||
callback = new Callback();
|
|
||||||
plugin = new LanTcpPlugin(ioExecutor, backoff, callback, 0, 0, 1000) {
|
|
||||||
@Override
|
|
||||||
protected boolean canConnectToOwnAddress() {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void testAreAddressesInSameNetwork() {
|
public void testAddressesAreOnSameLan() {
|
||||||
// Local and remote in 10.0.0.0/8
|
Callback callback = new Callback();
|
||||||
assertTrue(areAddressesInSameNetwork(makeAddress(10, 0, 0, 0),
|
LanTcpPlugin plugin = new LanTcpPlugin(ioExecutor, backoff, callback,
|
||||||
makeAddress(10, 255, 255, 255), 8));
|
0, 0);
|
||||||
assertFalse(areAddressesInSameNetwork(makeAddress(10, 0, 0, 0),
|
// Local and remote in 10.0.0.0/8 should return true
|
||||||
makeAddress(10, 255, 255, 255), 9));
|
assertTrue(plugin.addressesAreOnSameLan(makeAddress(10, 0, 0, 0),
|
||||||
|
makeAddress(10, 255, 255, 255)));
|
||||||
// Local and remote in 172.16.0.0/12
|
// Local and remote in 172.16.0.0/12 should return true
|
||||||
assertTrue(areAddressesInSameNetwork(makeAddress(172, 16, 0, 0),
|
assertTrue(plugin.addressesAreOnSameLan(makeAddress(172, 16, 0, 0),
|
||||||
makeAddress(172, 31, 255, 255), 12));
|
makeAddress(172, 31, 255, 255)));
|
||||||
assertFalse(areAddressesInSameNetwork(makeAddress(172, 16, 0, 0),
|
// Local and remote in 192.168.0.0/16 should return true
|
||||||
makeAddress(172, 31, 255, 255), 13));
|
assertTrue(plugin.addressesAreOnSameLan(makeAddress(192, 168, 0, 0),
|
||||||
|
makeAddress(192, 168, 255, 255)));
|
||||||
// Local and remote in 192.168.0.0/16
|
// Local and remote in 169.254.0.0/16 (link-local) should return true
|
||||||
assertTrue(areAddressesInSameNetwork(makeAddress(192, 168, 0, 0),
|
assertTrue(plugin.addressesAreOnSameLan(makeAddress(169, 254, 0, 0),
|
||||||
makeAddress(192, 168, 255, 255), 16));
|
makeAddress(169, 254, 255, 255)));
|
||||||
assertFalse(areAddressesInSameNetwork(makeAddress(192, 168, 0, 0),
|
// Local and remote in different recognised prefixes should return false
|
||||||
makeAddress(192, 168, 255, 255), 17));
|
assertFalse(plugin.addressesAreOnSameLan(makeAddress(10, 0, 0, 0),
|
||||||
|
makeAddress(172, 31, 255, 255)));
|
||||||
// Local and remote in 169.254.0.0/16
|
assertFalse(plugin.addressesAreOnSameLan(makeAddress(10, 0, 0, 0),
|
||||||
assertTrue(areAddressesInSameNetwork(makeAddress(169, 254, 0, 0),
|
makeAddress(192, 168, 255, 255)));
|
||||||
makeAddress(169, 254, 255, 255), 16));
|
assertFalse(plugin.addressesAreOnSameLan(makeAddress(172, 16, 0, 0),
|
||||||
assertFalse(areAddressesInSameNetwork(makeAddress(169, 254, 0, 0),
|
makeAddress(10, 255, 255, 255)));
|
||||||
makeAddress(169, 254, 255, 255), 17));
|
assertFalse(plugin.addressesAreOnSameLan(makeAddress(172, 16, 0, 0),
|
||||||
|
makeAddress(192, 168, 255, 255)));
|
||||||
// Local in 10.0.0.0/8, remote in a different network
|
assertFalse(plugin.addressesAreOnSameLan(makeAddress(192, 168, 0, 0),
|
||||||
assertFalse(areAddressesInSameNetwork(makeAddress(10, 0, 0, 0),
|
makeAddress(10, 255, 255, 255)));
|
||||||
makeAddress(172, 31, 255, 255), 8));
|
assertFalse(plugin.addressesAreOnSameLan(makeAddress(192, 168, 0, 0),
|
||||||
assertFalse(areAddressesInSameNetwork(makeAddress(10, 0, 0, 0),
|
makeAddress(172, 31, 255, 255)));
|
||||||
makeAddress(192, 168, 255, 255), 8));
|
// Remote prefix unrecognised should return false
|
||||||
assertFalse(areAddressesInSameNetwork(makeAddress(10, 0, 0, 0),
|
assertFalse(plugin.addressesAreOnSameLan(makeAddress(10, 0, 0, 0),
|
||||||
makeAddress(169, 254, 255, 255), 8));
|
makeAddress(1, 2, 3, 4)));
|
||||||
|
assertFalse(plugin.addressesAreOnSameLan(makeAddress(172, 16, 0, 0),
|
||||||
// Local in 172.16.0.0/12, remote in a different network
|
makeAddress(1, 2, 3, 4)));
|
||||||
assertFalse(areAddressesInSameNetwork(makeAddress(172, 16, 0, 0),
|
assertFalse(plugin.addressesAreOnSameLan(makeAddress(192, 168, 0, 0),
|
||||||
makeAddress(10, 255, 255, 255), 12));
|
makeAddress(1, 2, 3, 4)));
|
||||||
assertFalse(areAddressesInSameNetwork(makeAddress(172, 16, 0, 0),
|
// Both prefixes unrecognised should return true (could be link-local)
|
||||||
makeAddress(192, 168, 255, 255), 12));
|
assertTrue(plugin.addressesAreOnSameLan(makeAddress(1, 2, 3, 4),
|
||||||
assertFalse(areAddressesInSameNetwork(makeAddress(172, 16, 0, 0),
|
makeAddress(5, 6, 7, 8)));
|
||||||
makeAddress(169, 254, 255, 255), 12));
|
|
||||||
|
|
||||||
// Local in 192.168.0.0/16, remote in a different network
|
|
||||||
assertFalse(areAddressesInSameNetwork(makeAddress(192, 168, 0, 0),
|
|
||||||
makeAddress(10, 255, 255, 255), 16));
|
|
||||||
assertFalse(areAddressesInSameNetwork(makeAddress(192, 168, 0, 0),
|
|
||||||
makeAddress(172, 31, 255, 255), 16));
|
|
||||||
assertFalse(areAddressesInSameNetwork(makeAddress(192, 168, 0, 0),
|
|
||||||
makeAddress(169, 254, 255, 255), 16));
|
|
||||||
|
|
||||||
// Local in 169.254.0.0/16, remote in a different network
|
|
||||||
assertFalse(areAddressesInSameNetwork(makeAddress(169, 254, 0, 0),
|
|
||||||
makeAddress(10, 255, 255, 255), 16));
|
|
||||||
assertFalse(areAddressesInSameNetwork(makeAddress(169, 254, 0, 0),
|
|
||||||
makeAddress(172, 31, 255, 255), 16));
|
|
||||||
assertFalse(areAddressesInSameNetwork(makeAddress(169, 254, 0, 0),
|
|
||||||
makeAddress(192, 168, 255, 255), 16));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private byte[] makeAddress(int... parts) {
|
private byte[] makeAddress(int... parts) {
|
||||||
@@ -126,7 +95,13 @@ public class LanTcpPluginTest extends BrambleTestCase {
|
|||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void testIncomingConnection() throws Exception {
|
public void testIncomingConnection() throws Exception {
|
||||||
assumeTrue(systemHasLocalIpv4Address());
|
if (!systemHasLocalIpv4Address()) {
|
||||||
|
System.err.println("WARNING: Skipping test, no local IPv4 address");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
Callback callback = new Callback();
|
||||||
|
DuplexPlugin plugin = new LanTcpPlugin(ioExecutor, backoff, callback,
|
||||||
|
0, 0);
|
||||||
plugin.start();
|
plugin.start();
|
||||||
// The plugin should have bound a socket and stored the port number
|
// The plugin should have bound a socket and stored the port number
|
||||||
assertTrue(callback.propertiesLatch.await(5, SECONDS));
|
assertTrue(callback.propertiesLatch.await(5, SECONDS));
|
||||||
@@ -155,7 +130,13 @@ public class LanTcpPluginTest extends BrambleTestCase {
|
|||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void testOutgoingConnection() throws Exception {
|
public void testOutgoingConnection() throws Exception {
|
||||||
assumeTrue(systemHasLocalIpv4Address());
|
if (!systemHasLocalIpv4Address()) {
|
||||||
|
System.err.println("WARNING: Skipping test, no local IPv4 address");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
Callback callback = new Callback();
|
||||||
|
DuplexPlugin plugin = new LanTcpPlugin(ioExecutor, backoff, callback,
|
||||||
|
0, 0);
|
||||||
plugin.start();
|
plugin.start();
|
||||||
// The plugin should have bound a socket and stored the port number
|
// The plugin should have bound a socket and stored the port number
|
||||||
assertTrue(callback.propertiesLatch.await(5, SECONDS));
|
assertTrue(callback.propertiesLatch.await(5, SECONDS));
|
||||||
@@ -198,7 +179,13 @@ public class LanTcpPluginTest extends BrambleTestCase {
|
|||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void testIncomingKeyAgreementConnection() throws Exception {
|
public void testIncomingKeyAgreementConnection() throws Exception {
|
||||||
assumeTrue(systemHasLocalIpv4Address());
|
if (!systemHasLocalIpv4Address()) {
|
||||||
|
System.err.println("WARNING: Skipping test, no local IPv4 address");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
Callback callback = new Callback();
|
||||||
|
DuplexPlugin plugin = new LanTcpPlugin(ioExecutor, backoff, callback,
|
||||||
|
0, 0);
|
||||||
plugin.start();
|
plugin.start();
|
||||||
assertTrue(callback.propertiesLatch.await(5, SECONDS));
|
assertTrue(callback.propertiesLatch.await(5, SECONDS));
|
||||||
KeyAgreementListener kal =
|
KeyAgreementListener kal =
|
||||||
@@ -240,7 +227,13 @@ public class LanTcpPluginTest extends BrambleTestCase {
|
|||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void testOutgoingKeyAgreementConnection() throws Exception {
|
public void testOutgoingKeyAgreementConnection() throws Exception {
|
||||||
assumeTrue(systemHasLocalIpv4Address());
|
if (!systemHasLocalIpv4Address()) {
|
||||||
|
System.err.println("WARNING: Skipping test, no local IPv4 address");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
Callback callback = new Callback();
|
||||||
|
DuplexPlugin plugin = new LanTcpPlugin(ioExecutor, backoff, callback,
|
||||||
|
0, 0);
|
||||||
plugin.start();
|
plugin.start();
|
||||||
// The plugin should have bound a socket and stored the port number
|
// The plugin should have bound a socket and stored the port number
|
||||||
assertTrue(callback.propertiesLatch.await(5, SECONDS));
|
assertTrue(callback.propertiesLatch.await(5, SECONDS));
|
||||||
@@ -285,12 +278,63 @@ public class LanTcpPluginTest extends BrambleTestCase {
|
|||||||
plugin.stop();
|
plugin.stop();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testComparatorPrefersNonZeroPorts() {
|
||||||
|
Comparator<InetSocketAddress> comparator = new LanAddressComparator();
|
||||||
|
InetSocketAddress nonZero = new InetSocketAddress("1.2.3.4", 1234);
|
||||||
|
InetSocketAddress zero = new InetSocketAddress("1.2.3.4", 0);
|
||||||
|
|
||||||
|
assertEquals(0, comparator.compare(nonZero, nonZero));
|
||||||
|
assertTrue(comparator.compare(nonZero, zero) < 0);
|
||||||
|
|
||||||
|
assertTrue(comparator.compare(zero, nonZero) > 0);
|
||||||
|
assertEquals(0, comparator.compare(zero, zero));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testComparatorPrefersLongerPrefixes() {
|
||||||
|
Comparator<InetSocketAddress> comparator = new LanAddressComparator();
|
||||||
|
InetSocketAddress prefix192 = new InetSocketAddress("192.168.0.1", 0);
|
||||||
|
InetSocketAddress prefix172 = new InetSocketAddress("172.16.0.1", 0);
|
||||||
|
InetSocketAddress prefix10 = new InetSocketAddress("10.0.0.1", 0);
|
||||||
|
|
||||||
|
assertEquals(0, comparator.compare(prefix192, prefix192));
|
||||||
|
assertTrue(comparator.compare(prefix192, prefix172) < 0);
|
||||||
|
assertTrue(comparator.compare(prefix192, prefix10) < 0);
|
||||||
|
|
||||||
|
assertTrue(comparator.compare(prefix172, prefix192) > 0);
|
||||||
|
assertEquals(0, comparator.compare(prefix172, prefix172));
|
||||||
|
assertTrue(comparator.compare(prefix172, prefix10) < 0);
|
||||||
|
|
||||||
|
assertTrue(comparator.compare(prefix10, prefix192) > 0);
|
||||||
|
assertTrue(comparator.compare(prefix10, prefix172) > 0);
|
||||||
|
assertEquals(0, comparator.compare(prefix10, prefix10));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testComparatorPrefersSiteLocalToLinkLocal() {
|
||||||
|
Comparator<InetSocketAddress> comparator = new LanAddressComparator();
|
||||||
|
InetSocketAddress prefix192 = new InetSocketAddress("192.168.0.1", 0);
|
||||||
|
InetSocketAddress prefix172 = new InetSocketAddress("172.16.0.1", 0);
|
||||||
|
InetSocketAddress prefix10 = new InetSocketAddress("10.0.0.1", 0);
|
||||||
|
InetSocketAddress linkLocal = new InetSocketAddress("169.254.0.1", 0);
|
||||||
|
|
||||||
|
assertTrue(comparator.compare(prefix192, linkLocal) < 0);
|
||||||
|
assertTrue(comparator.compare(prefix172, linkLocal) < 0);
|
||||||
|
assertTrue(comparator.compare(prefix10, linkLocal) < 0);
|
||||||
|
|
||||||
|
assertTrue(comparator.compare(linkLocal, prefix192) > 0);
|
||||||
|
assertTrue(comparator.compare(linkLocal, prefix172) > 0);
|
||||||
|
assertTrue(comparator.compare(linkLocal, prefix10) > 0);
|
||||||
|
assertEquals(0, comparator.compare(linkLocal, linkLocal));
|
||||||
|
}
|
||||||
|
|
||||||
|
@SuppressWarnings("BooleanMethodIsAlwaysInverted")
|
||||||
private boolean systemHasLocalIpv4Address() throws Exception {
|
private boolean systemHasLocalIpv4Address() throws Exception {
|
||||||
for (NetworkInterface i : list(getNetworkInterfaces())) {
|
for (NetworkInterface i : list(getNetworkInterfaces())) {
|
||||||
for (InetAddress a : list(i.getInetAddresses())) {
|
for (InetAddress a : list(i.getInetAddresses())) {
|
||||||
if (a instanceof Inet4Address) {
|
if (a instanceof Inet4Address)
|
||||||
return a.isLinkLocalAddress() || a.isSiteLocalAddress();
|
return a.isLinkLocalAddress() || a.isSiteLocalAddress();
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
@@ -299,9 +343,7 @@ public class LanTcpPluginTest extends BrambleTestCase {
|
|||||||
@NotNullByDefault
|
@NotNullByDefault
|
||||||
private static class Callback implements PluginCallback {
|
private static class Callback implements PluginCallback {
|
||||||
|
|
||||||
// Properties will be stored twice: the preferred port at startup,
|
private final CountDownLatch propertiesLatch = new CountDownLatch(1);
|
||||||
// and the IP:port when the server socket is bound
|
|
||||||
private final CountDownLatch propertiesLatch = new CountDownLatch(2);
|
|
||||||
private final CountDownLatch connectionsLatch = new CountDownLatch(1);
|
private final CountDownLatch connectionsLatch = new CountDownLatch(1);
|
||||||
private final TransportProperties local = new TransportProperties();
|
private final TransportProperties local = new TransportProperties();
|
||||||
private final Settings settings = new Settings();
|
private final Settings settings = new Settings();
|
||||||
|
|||||||
@@ -24,18 +24,14 @@ import org.briarproject.bramble.test.DbExpectations;
|
|||||||
import org.jmock.Expectations;
|
import org.jmock.Expectations;
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
|
|
||||||
|
import java.util.Collections;
|
||||||
import java.util.LinkedHashMap;
|
import java.util.LinkedHashMap;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
|
|
||||||
import static java.util.Arrays.asList;
|
import static java.util.Arrays.asList;
|
||||||
import static java.util.Collections.emptyMap;
|
|
||||||
import static java.util.Collections.singletonList;
|
import static java.util.Collections.singletonList;
|
||||||
import static java.util.Collections.singletonMap;
|
import static java.util.Collections.singletonMap;
|
||||||
import static org.briarproject.bramble.api.properties.TransportPropertyConstants.GROUP_KEY_DISCOVERED;
|
|
||||||
import static org.briarproject.bramble.api.properties.TransportPropertyConstants.MSG_KEY_LOCAL;
|
|
||||||
import static org.briarproject.bramble.api.properties.TransportPropertyConstants.MSG_KEY_TRANSPORT_ID;
|
|
||||||
import static org.briarproject.bramble.api.properties.TransportPropertyConstants.MSG_KEY_VERSION;
|
|
||||||
import static org.briarproject.bramble.api.properties.TransportPropertyManager.CLIENT_ID;
|
import static org.briarproject.bramble.api.properties.TransportPropertyManager.CLIENT_ID;
|
||||||
import static org.briarproject.bramble.api.properties.TransportPropertyManager.MAJOR_VERSION;
|
import static org.briarproject.bramble.api.properties.TransportPropertyManager.MAJOR_VERSION;
|
||||||
import static org.briarproject.bramble.api.sync.Group.Visibility.SHARED;
|
import static org.briarproject.bramble.api.sync.Group.Visibility.SHARED;
|
||||||
@@ -190,25 +186,25 @@ public class TransportPropertyManagerImplTest extends BrambleMockTestCase {
|
|||||||
Message message = getMessage(contactGroupId);
|
Message message = getMessage(contactGroupId);
|
||||||
Metadata meta = new Metadata();
|
Metadata meta = new Metadata();
|
||||||
BdfDictionary metaDictionary = BdfDictionary.of(
|
BdfDictionary metaDictionary = BdfDictionary.of(
|
||||||
new BdfEntry(MSG_KEY_TRANSPORT_ID, "foo"),
|
new BdfEntry("transportId", "foo"),
|
||||||
new BdfEntry(MSG_KEY_VERSION, 2),
|
new BdfEntry("version", 2),
|
||||||
new BdfEntry(MSG_KEY_LOCAL, false)
|
new BdfEntry("local", false)
|
||||||
);
|
);
|
||||||
Map<MessageId, BdfDictionary> messageMetadata =
|
Map<MessageId, BdfDictionary> messageMetadata =
|
||||||
new LinkedHashMap<>();
|
new LinkedHashMap<>();
|
||||||
// A remote update for another transport should be ignored
|
// A remote update for another transport should be ignored
|
||||||
MessageId barUpdateId = new MessageId(getRandomId());
|
MessageId barUpdateId = new MessageId(getRandomId());
|
||||||
messageMetadata.put(barUpdateId, BdfDictionary.of(
|
messageMetadata.put(barUpdateId, BdfDictionary.of(
|
||||||
new BdfEntry(MSG_KEY_TRANSPORT_ID, "bar"),
|
new BdfEntry("transportId", "bar"),
|
||||||
new BdfEntry(MSG_KEY_VERSION, 1),
|
new BdfEntry("version", 1),
|
||||||
new BdfEntry(MSG_KEY_LOCAL, false)
|
new BdfEntry("local", false)
|
||||||
));
|
));
|
||||||
// A local update for the same transport should be ignored
|
// A local update for the same transport should be ignored
|
||||||
MessageId localUpdateId = new MessageId(getRandomId());
|
MessageId localUpdateId = new MessageId(getRandomId());
|
||||||
messageMetadata.put(localUpdateId, BdfDictionary.of(
|
messageMetadata.put(localUpdateId, BdfDictionary.of(
|
||||||
new BdfEntry(MSG_KEY_TRANSPORT_ID, "foo"),
|
new BdfEntry("transportId", "foo"),
|
||||||
new BdfEntry(MSG_KEY_VERSION, 1),
|
new BdfEntry("version", 1),
|
||||||
new BdfEntry(MSG_KEY_LOCAL, true)
|
new BdfEntry("local", true)
|
||||||
));
|
));
|
||||||
|
|
||||||
context.checking(new Expectations() {{
|
context.checking(new Expectations() {{
|
||||||
@@ -232,18 +228,18 @@ public class TransportPropertyManagerImplTest extends BrambleMockTestCase {
|
|||||||
Metadata meta = new Metadata();
|
Metadata meta = new Metadata();
|
||||||
// Version 4 is being delivered
|
// Version 4 is being delivered
|
||||||
BdfDictionary metaDictionary = BdfDictionary.of(
|
BdfDictionary metaDictionary = BdfDictionary.of(
|
||||||
new BdfEntry(MSG_KEY_TRANSPORT_ID, "foo"),
|
new BdfEntry("transportId", "foo"),
|
||||||
new BdfEntry(MSG_KEY_VERSION, 4),
|
new BdfEntry("version", 4),
|
||||||
new BdfEntry(MSG_KEY_LOCAL, false)
|
new BdfEntry("local", false)
|
||||||
);
|
);
|
||||||
Map<MessageId, BdfDictionary> messageMetadata =
|
Map<MessageId, BdfDictionary> messageMetadata =
|
||||||
new LinkedHashMap<>();
|
new LinkedHashMap<>();
|
||||||
// An older remote update for the same transport should be deleted
|
// An older remote update for the same transport should be deleted
|
||||||
MessageId fooVersion3 = new MessageId(getRandomId());
|
MessageId fooVersion3 = new MessageId(getRandomId());
|
||||||
messageMetadata.put(fooVersion3, BdfDictionary.of(
|
messageMetadata.put(fooVersion3, BdfDictionary.of(
|
||||||
new BdfEntry(MSG_KEY_TRANSPORT_ID, "foo"),
|
new BdfEntry("transportId", "foo"),
|
||||||
new BdfEntry(MSG_KEY_VERSION, 3),
|
new BdfEntry("version", 3),
|
||||||
new BdfEntry(MSG_KEY_LOCAL, false)
|
new BdfEntry("local", false)
|
||||||
));
|
));
|
||||||
|
|
||||||
context.checking(new Expectations() {{
|
context.checking(new Expectations() {{
|
||||||
@@ -269,18 +265,18 @@ public class TransportPropertyManagerImplTest extends BrambleMockTestCase {
|
|||||||
Metadata meta = new Metadata();
|
Metadata meta = new Metadata();
|
||||||
// Version 3 is being delivered
|
// Version 3 is being delivered
|
||||||
BdfDictionary metaDictionary = BdfDictionary.of(
|
BdfDictionary metaDictionary = BdfDictionary.of(
|
||||||
new BdfEntry(MSG_KEY_TRANSPORT_ID, "foo"),
|
new BdfEntry("transportId", "foo"),
|
||||||
new BdfEntry(MSG_KEY_VERSION, 3),
|
new BdfEntry("version", 3),
|
||||||
new BdfEntry(MSG_KEY_LOCAL, false)
|
new BdfEntry("local", false)
|
||||||
);
|
);
|
||||||
Map<MessageId, BdfDictionary> messageMetadata =
|
Map<MessageId, BdfDictionary> messageMetadata =
|
||||||
new LinkedHashMap<>();
|
new LinkedHashMap<>();
|
||||||
// A newer remote update for the same transport should not be deleted
|
// A newer remote update for the same transport should not be deleted
|
||||||
MessageId fooVersion4 = new MessageId(getRandomId());
|
MessageId fooVersion4 = new MessageId(getRandomId());
|
||||||
messageMetadata.put(fooVersion4, BdfDictionary.of(
|
messageMetadata.put(fooVersion4, BdfDictionary.of(
|
||||||
new BdfEntry(MSG_KEY_TRANSPORT_ID, "foo"),
|
new BdfEntry("transportId", "foo"),
|
||||||
new BdfEntry(MSG_KEY_VERSION, 4),
|
new BdfEntry("version", 4),
|
||||||
new BdfEntry(MSG_KEY_LOCAL, false)
|
new BdfEntry("local", false)
|
||||||
));
|
));
|
||||||
|
|
||||||
context.checking(new Expectations() {{
|
context.checking(new Expectations() {{
|
||||||
@@ -346,9 +342,9 @@ public class TransportPropertyManagerImplTest extends BrambleMockTestCase {
|
|||||||
// A local update for another transport should be ignored
|
// A local update for another transport should be ignored
|
||||||
MessageId barUpdateId = new MessageId(getRandomId());
|
MessageId barUpdateId = new MessageId(getRandomId());
|
||||||
messageMetadata.put(barUpdateId, BdfDictionary.of(
|
messageMetadata.put(barUpdateId, BdfDictionary.of(
|
||||||
new BdfEntry(MSG_KEY_TRANSPORT_ID, "bar"),
|
new BdfEntry("transportId", "bar"),
|
||||||
new BdfEntry(MSG_KEY_VERSION, 1),
|
new BdfEntry("version", 1),
|
||||||
new BdfEntry(MSG_KEY_LOCAL, true)
|
new BdfEntry("local", true)
|
||||||
));
|
));
|
||||||
|
|
||||||
context.checking(new DbExpectations() {{
|
context.checking(new DbExpectations() {{
|
||||||
@@ -370,16 +366,16 @@ public class TransportPropertyManagerImplTest extends BrambleMockTestCase {
|
|||||||
// A local update for another transport should be ignored
|
// A local update for another transport should be ignored
|
||||||
MessageId barUpdateId = new MessageId(getRandomId());
|
MessageId barUpdateId = new MessageId(getRandomId());
|
||||||
messageMetadata.put(barUpdateId, BdfDictionary.of(
|
messageMetadata.put(barUpdateId, BdfDictionary.of(
|
||||||
new BdfEntry(MSG_KEY_TRANSPORT_ID, "bar"),
|
new BdfEntry("transportId", "bar"),
|
||||||
new BdfEntry(MSG_KEY_VERSION, 1),
|
new BdfEntry("version", 1),
|
||||||
new BdfEntry(MSG_KEY_LOCAL, true)
|
new BdfEntry("local", true)
|
||||||
));
|
));
|
||||||
// A local update for the right transport should be returned
|
// A local update for the right transport should be returned
|
||||||
MessageId fooUpdateId = new MessageId(getRandomId());
|
MessageId fooUpdateId = new MessageId(getRandomId());
|
||||||
messageMetadata.put(fooUpdateId, BdfDictionary.of(
|
messageMetadata.put(fooUpdateId, BdfDictionary.of(
|
||||||
new BdfEntry(MSG_KEY_TRANSPORT_ID, "foo"),
|
new BdfEntry("transportId", "foo"),
|
||||||
new BdfEntry(MSG_KEY_VERSION, 1),
|
new BdfEntry("version", 1),
|
||||||
new BdfEntry(MSG_KEY_LOCAL, true)
|
new BdfEntry("local", true)
|
||||||
));
|
));
|
||||||
BdfList fooUpdate = BdfList.of("foo", 1, fooPropertiesDict);
|
BdfList fooUpdate = BdfList.of("foo", 1, fooPropertiesDict);
|
||||||
|
|
||||||
@@ -409,28 +405,28 @@ public class TransportPropertyManagerImplTest extends BrambleMockTestCase {
|
|||||||
List<Contact> contacts = asList(contact1, contact2);
|
List<Contact> contacts = asList(contact1, contact2);
|
||||||
Group contactGroup1 = getGroup(CLIENT_ID, MAJOR_VERSION);
|
Group contactGroup1 = getGroup(CLIENT_ID, MAJOR_VERSION);
|
||||||
Group contactGroup2 = getGroup(CLIENT_ID, MAJOR_VERSION);
|
Group contactGroup2 = getGroup(CLIENT_ID, MAJOR_VERSION);
|
||||||
Map<MessageId, BdfDictionary> messageMetadata =
|
Map<MessageId, BdfDictionary> messageMetadata2 =
|
||||||
new LinkedHashMap<>();
|
new LinkedHashMap<>();
|
||||||
// A remote update for another transport should be ignored
|
// A remote update for another transport should be ignored
|
||||||
MessageId barUpdateId = new MessageId(getRandomId());
|
MessageId barUpdateId = new MessageId(getRandomId());
|
||||||
messageMetadata.put(barUpdateId, BdfDictionary.of(
|
messageMetadata2.put(barUpdateId, BdfDictionary.of(
|
||||||
new BdfEntry(MSG_KEY_TRANSPORT_ID, "bar"),
|
new BdfEntry("transportId", "bar"),
|
||||||
new BdfEntry(MSG_KEY_VERSION, 1),
|
new BdfEntry("version", 1),
|
||||||
new BdfEntry(MSG_KEY_LOCAL, false)
|
new BdfEntry("local", false)
|
||||||
));
|
));
|
||||||
// A local update for the right transport should be ignored
|
// A local update for the right transport should be ignored
|
||||||
MessageId localUpdateId = new MessageId(getRandomId());
|
MessageId localUpdateId = new MessageId(getRandomId());
|
||||||
messageMetadata.put(localUpdateId, BdfDictionary.of(
|
messageMetadata2.put(localUpdateId, BdfDictionary.of(
|
||||||
new BdfEntry(MSG_KEY_TRANSPORT_ID, "foo"),
|
new BdfEntry("transportId", "foo"),
|
||||||
new BdfEntry(MSG_KEY_VERSION, 1),
|
new BdfEntry("version", 1),
|
||||||
new BdfEntry(MSG_KEY_LOCAL, true)
|
new BdfEntry("local", true)
|
||||||
));
|
));
|
||||||
// A remote update for the right transport should be returned
|
// A remote update for the right transport should be returned
|
||||||
MessageId fooUpdateId = new MessageId(getRandomId());
|
MessageId fooUpdateId = new MessageId(getRandomId());
|
||||||
messageMetadata.put(fooUpdateId, BdfDictionary.of(
|
messageMetadata2.put(fooUpdateId, BdfDictionary.of(
|
||||||
new BdfEntry(MSG_KEY_TRANSPORT_ID, "foo"),
|
new BdfEntry("transportId", "foo"),
|
||||||
new BdfEntry(MSG_KEY_VERSION, 1),
|
new BdfEntry("version", 1),
|
||||||
new BdfEntry(MSG_KEY_LOCAL, false)
|
new BdfEntry("local", false)
|
||||||
));
|
));
|
||||||
BdfList fooUpdate = BdfList.of("foo", 1, fooPropertiesDict);
|
BdfList fooUpdate = BdfList.of("foo", 1, fooPropertiesDict);
|
||||||
|
|
||||||
@@ -444,25 +440,19 @@ public class TransportPropertyManagerImplTest extends BrambleMockTestCase {
|
|||||||
will(returnValue(contactGroup1));
|
will(returnValue(contactGroup1));
|
||||||
oneOf(clientHelper).getMessageMetadataAsDictionary(txn,
|
oneOf(clientHelper).getMessageMetadataAsDictionary(txn,
|
||||||
contactGroup1.getId());
|
contactGroup1.getId());
|
||||||
will(returnValue(emptyMap()));
|
will(returnValue(Collections.emptyMap()));
|
||||||
oneOf(clientHelper).getGroupMetadataAsDictionary(txn,
|
|
||||||
contactGroup1.getId());
|
|
||||||
will(returnValue(new BdfDictionary()));
|
|
||||||
// Second contact: returns an update
|
// Second contact: returns an update
|
||||||
oneOf(contactGroupFactory).createContactGroup(CLIENT_ID,
|
oneOf(contactGroupFactory).createContactGroup(CLIENT_ID,
|
||||||
MAJOR_VERSION, contact2);
|
MAJOR_VERSION, contact2);
|
||||||
will(returnValue(contactGroup2));
|
will(returnValue(contactGroup2));
|
||||||
oneOf(clientHelper).getMessageMetadataAsDictionary(txn,
|
oneOf(clientHelper).getMessageMetadataAsDictionary(txn,
|
||||||
contactGroup2.getId());
|
contactGroup2.getId());
|
||||||
will(returnValue(messageMetadata));
|
will(returnValue(messageMetadata2));
|
||||||
oneOf(clientHelper).getMessageAsList(txn, fooUpdateId);
|
oneOf(clientHelper).getMessageAsList(txn, fooUpdateId);
|
||||||
will(returnValue(fooUpdate));
|
will(returnValue(fooUpdate));
|
||||||
oneOf(clientHelper).parseAndValidateTransportProperties(
|
oneOf(clientHelper).parseAndValidateTransportProperties(
|
||||||
fooPropertiesDict);
|
fooPropertiesDict);
|
||||||
will(returnValue(fooProperties));
|
will(returnValue(fooProperties));
|
||||||
oneOf(clientHelper).getGroupMetadataAsDictionary(txn,
|
|
||||||
contactGroup2.getId());
|
|
||||||
will(returnValue(new BdfDictionary()));
|
|
||||||
}});
|
}});
|
||||||
|
|
||||||
TransportPropertyManagerImpl t = createInstance();
|
TransportPropertyManagerImpl t = createInstance();
|
||||||
@@ -473,62 +463,6 @@ public class TransportPropertyManagerImplTest extends BrambleMockTestCase {
|
|||||||
assertEquals(fooProperties, properties.get(contact2.getId()));
|
assertEquals(fooProperties, properties.get(contact2.getId()));
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
|
||||||
public void testReceivePropertiesOverrideDiscoveredProperties()
|
|
||||||
throws Exception {
|
|
||||||
Transaction txn = new Transaction(null, true);
|
|
||||||
Contact contact = getContact();
|
|
||||||
List<Contact> contacts = singletonList(contact);
|
|
||||||
Group contactGroup = getGroup(CLIENT_ID, MAJOR_VERSION);
|
|
||||||
MessageId updateId = new MessageId(getRandomId());
|
|
||||||
Map<MessageId, BdfDictionary> messageMetadata = singletonMap(updateId,
|
|
||||||
BdfDictionary.of(
|
|
||||||
new BdfEntry(MSG_KEY_TRANSPORT_ID, "foo"),
|
|
||||||
new BdfEntry(MSG_KEY_VERSION, 1),
|
|
||||||
new BdfEntry(MSG_KEY_LOCAL, false)
|
|
||||||
));
|
|
||||||
BdfList update = BdfList.of("foo", 1, fooPropertiesDict);
|
|
||||||
TransportProperties discovered = new TransportProperties();
|
|
||||||
discovered.put("fooKey1", "overridden");
|
|
||||||
discovered.put("fooKey3", "fooValue3");
|
|
||||||
BdfDictionary discoveredDict = new BdfDictionary(discovered);
|
|
||||||
BdfDictionary groupMeta = BdfDictionary.of(
|
|
||||||
new BdfEntry(GROUP_KEY_DISCOVERED, discoveredDict)
|
|
||||||
);
|
|
||||||
TransportProperties merged = new TransportProperties();
|
|
||||||
merged.putAll(fooProperties);
|
|
||||||
merged.put("fooKey3", "fooValue3");
|
|
||||||
|
|
||||||
context.checking(new DbExpectations() {{
|
|
||||||
oneOf(db).transactionWithResult(with(true), withDbCallable(txn));
|
|
||||||
oneOf(db).getContacts(txn);
|
|
||||||
will(returnValue(contacts));
|
|
||||||
// One update
|
|
||||||
oneOf(contactGroupFactory).createContactGroup(CLIENT_ID,
|
|
||||||
MAJOR_VERSION, contact);
|
|
||||||
will(returnValue(contactGroup));
|
|
||||||
oneOf(clientHelper).getMessageMetadataAsDictionary(txn,
|
|
||||||
contactGroup.getId());
|
|
||||||
will(returnValue(messageMetadata));
|
|
||||||
oneOf(clientHelper).getMessageAsList(txn, updateId);
|
|
||||||
will(returnValue(update));
|
|
||||||
oneOf(clientHelper).parseAndValidateTransportProperties(
|
|
||||||
fooPropertiesDict);
|
|
||||||
will(returnValue(fooProperties));
|
|
||||||
oneOf(clientHelper).getGroupMetadataAsDictionary(txn,
|
|
||||||
contactGroup.getId());
|
|
||||||
will(returnValue(groupMeta));
|
|
||||||
oneOf(clientHelper).parseAndValidateTransportProperties(
|
|
||||||
discoveredDict);
|
|
||||||
will(returnValue(discovered));
|
|
||||||
}});
|
|
||||||
|
|
||||||
TransportPropertyManagerImpl t = createInstance();
|
|
||||||
Map<ContactId, TransportProperties> properties =
|
|
||||||
t.getRemoteProperties(new TransportId("foo"));
|
|
||||||
assertEquals(merged, properties.get(contact.getId()));
|
|
||||||
}
|
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void testMergingUnchangedPropertiesDoesNotCreateUpdate()
|
public void testMergingUnchangedPropertiesDoesNotCreateUpdate()
|
||||||
throws Exception {
|
throws Exception {
|
||||||
@@ -536,9 +470,9 @@ public class TransportPropertyManagerImplTest extends BrambleMockTestCase {
|
|||||||
MessageId updateId = new MessageId(getRandomId());
|
MessageId updateId = new MessageId(getRandomId());
|
||||||
Map<MessageId, BdfDictionary> messageMetadata = singletonMap(updateId,
|
Map<MessageId, BdfDictionary> messageMetadata = singletonMap(updateId,
|
||||||
BdfDictionary.of(
|
BdfDictionary.of(
|
||||||
new BdfEntry(MSG_KEY_TRANSPORT_ID, "foo"),
|
new BdfEntry("transportId", "foo"),
|
||||||
new BdfEntry(MSG_KEY_VERSION, 1),
|
new BdfEntry("version", 1),
|
||||||
new BdfEntry(MSG_KEY_LOCAL, true)
|
new BdfEntry("local", true)
|
||||||
));
|
));
|
||||||
BdfList update = BdfList.of("foo", 1, fooPropertiesDict);
|
BdfList update = BdfList.of("foo", 1, fooPropertiesDict);
|
||||||
|
|
||||||
@@ -571,7 +505,7 @@ public class TransportPropertyManagerImplTest extends BrambleMockTestCase {
|
|||||||
// There are no existing properties to merge with
|
// There are no existing properties to merge with
|
||||||
oneOf(clientHelper).getMessageMetadataAsDictionary(txn,
|
oneOf(clientHelper).getMessageMetadataAsDictionary(txn,
|
||||||
localGroup.getId());
|
localGroup.getId());
|
||||||
will(returnValue(emptyMap()));
|
will(returnValue(Collections.emptyMap()));
|
||||||
// Store the new properties in the local group, version 1
|
// Store the new properties in the local group, version 1
|
||||||
expectStoreMessage(txn, localGroup.getId(), "foo",
|
expectStoreMessage(txn, localGroup.getId(), "foo",
|
||||||
fooPropertiesDict, 1, true, false);
|
fooPropertiesDict, 1, true, false);
|
||||||
@@ -583,7 +517,7 @@ public class TransportPropertyManagerImplTest extends BrambleMockTestCase {
|
|||||||
will(returnValue(contactGroup));
|
will(returnValue(contactGroup));
|
||||||
oneOf(clientHelper).getMessageMetadataAsDictionary(txn,
|
oneOf(clientHelper).getMessageMetadataAsDictionary(txn,
|
||||||
contactGroup.getId());
|
contactGroup.getId());
|
||||||
will(returnValue(emptyMap()));
|
will(returnValue(Collections.emptyMap()));
|
||||||
expectStoreMessage(txn, contactGroup.getId(), "foo",
|
expectStoreMessage(txn, contactGroup.getId(), "foo",
|
||||||
fooPropertiesDict, 1, true, true);
|
fooPropertiesDict, 1, true, true);
|
||||||
}});
|
}});
|
||||||
@@ -598,9 +532,9 @@ public class TransportPropertyManagerImplTest extends BrambleMockTestCase {
|
|||||||
Contact contact = getContact();
|
Contact contact = getContact();
|
||||||
Group contactGroup = getGroup(CLIENT_ID, MAJOR_VERSION);
|
Group contactGroup = getGroup(CLIENT_ID, MAJOR_VERSION);
|
||||||
BdfDictionary oldMetadata = BdfDictionary.of(
|
BdfDictionary oldMetadata = BdfDictionary.of(
|
||||||
new BdfEntry(MSG_KEY_TRANSPORT_ID, "foo"),
|
new BdfEntry("transportId", "foo"),
|
||||||
new BdfEntry(MSG_KEY_VERSION, 1),
|
new BdfEntry("version", 1),
|
||||||
new BdfEntry(MSG_KEY_LOCAL, true)
|
new BdfEntry("local", true)
|
||||||
);
|
);
|
||||||
MessageId localGroupUpdateId = new MessageId(getRandomId());
|
MessageId localGroupUpdateId = new MessageId(getRandomId());
|
||||||
Map<MessageId, BdfDictionary> localGroupMessageMetadata =
|
Map<MessageId, BdfDictionary> localGroupMessageMetadata =
|
||||||
@@ -655,14 +589,14 @@ public class TransportPropertyManagerImplTest extends BrambleMockTestCase {
|
|||||||
// The latest update for transport "foo" should be returned
|
// The latest update for transport "foo" should be returned
|
||||||
MessageId fooVersion999 = new MessageId(getRandomId());
|
MessageId fooVersion999 = new MessageId(getRandomId());
|
||||||
messageMetadata.put(fooVersion999, BdfDictionary.of(
|
messageMetadata.put(fooVersion999, BdfDictionary.of(
|
||||||
new BdfEntry(MSG_KEY_TRANSPORT_ID, "foo"),
|
new BdfEntry("transportId", "foo"),
|
||||||
new BdfEntry(MSG_KEY_VERSION, 999)
|
new BdfEntry("version", 999)
|
||||||
));
|
));
|
||||||
// The latest update for transport "bar" should be returned
|
// The latest update for transport "bar" should be returned
|
||||||
MessageId barVersion3 = new MessageId(getRandomId());
|
MessageId barVersion3 = new MessageId(getRandomId());
|
||||||
messageMetadata.put(barVersion3, BdfDictionary.of(
|
messageMetadata.put(barVersion3, BdfDictionary.of(
|
||||||
new BdfEntry(MSG_KEY_TRANSPORT_ID, "bar"),
|
new BdfEntry("transportId", "bar"),
|
||||||
new BdfEntry(MSG_KEY_VERSION, 3)
|
new BdfEntry("version", 3)
|
||||||
));
|
));
|
||||||
BdfList fooUpdate = BdfList.of("foo", 999, fooPropertiesDict);
|
BdfList fooUpdate = BdfList.of("foo", 999, fooPropertiesDict);
|
||||||
BdfList barUpdate = BdfList.of("bar", 3, barPropertiesDict);
|
BdfList barUpdate = BdfList.of("bar", 3, barPropertiesDict);
|
||||||
@@ -693,9 +627,9 @@ public class TransportPropertyManagerImplTest extends BrambleMockTestCase {
|
|||||||
Message message = getMessage(g);
|
Message message = getMessage(g);
|
||||||
long timestamp = message.getTimestamp();
|
long timestamp = message.getTimestamp();
|
||||||
BdfDictionary meta = BdfDictionary.of(
|
BdfDictionary meta = BdfDictionary.of(
|
||||||
new BdfEntry(MSG_KEY_TRANSPORT_ID, transportId),
|
new BdfEntry("transportId", transportId),
|
||||||
new BdfEntry(MSG_KEY_VERSION, version),
|
new BdfEntry("version", version),
|
||||||
new BdfEntry(MSG_KEY_LOCAL, local)
|
new BdfEntry("local", local)
|
||||||
);
|
);
|
||||||
|
|
||||||
context.checking(new Expectations() {{
|
context.checking(new Expectations() {{
|
||||||
|
|||||||
@@ -1,6 +1,5 @@
|
|||||||
package org.briarproject.bramble.rendezvous;
|
package org.briarproject.bramble.rendezvous;
|
||||||
|
|
||||||
import org.briarproject.bramble.api.connection.ConnectionManager;
|
|
||||||
import org.briarproject.bramble.api.contact.PendingContact;
|
import org.briarproject.bramble.api.contact.PendingContact;
|
||||||
import org.briarproject.bramble.api.contact.PendingContactState;
|
import org.briarproject.bramble.api.contact.PendingContactState;
|
||||||
import org.briarproject.bramble.api.contact.event.PendingContactAddedEvent;
|
import org.briarproject.bramble.api.contact.event.PendingContactAddedEvent;
|
||||||
@@ -14,6 +13,7 @@ import org.briarproject.bramble.api.db.Transaction;
|
|||||||
import org.briarproject.bramble.api.event.EventBus;
|
import org.briarproject.bramble.api.event.EventBus;
|
||||||
import org.briarproject.bramble.api.identity.IdentityManager;
|
import org.briarproject.bramble.api.identity.IdentityManager;
|
||||||
import org.briarproject.bramble.api.plugin.ConnectionHandler;
|
import org.briarproject.bramble.api.plugin.ConnectionHandler;
|
||||||
|
import org.briarproject.bramble.api.plugin.ConnectionManager;
|
||||||
import org.briarproject.bramble.api.plugin.PluginManager;
|
import org.briarproject.bramble.api.plugin.PluginManager;
|
||||||
import org.briarproject.bramble.api.plugin.TransportId;
|
import org.briarproject.bramble.api.plugin.TransportId;
|
||||||
import org.briarproject.bramble.api.plugin.duplex.DuplexPlugin;
|
import org.briarproject.bramble.api.plugin.duplex.DuplexPlugin;
|
||||||
|
|||||||
@@ -4,7 +4,6 @@ import org.briarproject.bramble.api.contact.ContactId;
|
|||||||
import org.briarproject.bramble.api.db.DatabaseComponent;
|
import org.briarproject.bramble.api.db.DatabaseComponent;
|
||||||
import org.briarproject.bramble.api.db.Transaction;
|
import org.briarproject.bramble.api.db.Transaction;
|
||||||
import org.briarproject.bramble.api.event.EventBus;
|
import org.briarproject.bramble.api.event.EventBus;
|
||||||
import org.briarproject.bramble.api.plugin.TransportId;
|
|
||||||
import org.briarproject.bramble.api.sync.Ack;
|
import org.briarproject.bramble.api.sync.Ack;
|
||||||
import org.briarproject.bramble.api.sync.GroupId;
|
import org.briarproject.bramble.api.sync.GroupId;
|
||||||
import org.briarproject.bramble.api.sync.Message;
|
import org.briarproject.bramble.api.sync.Message;
|
||||||
@@ -24,7 +23,6 @@ import static org.briarproject.bramble.api.sync.SyncConstants.MAX_MESSAGE_IDS;
|
|||||||
import static org.briarproject.bramble.test.TestUtils.getContactId;
|
import static org.briarproject.bramble.test.TestUtils.getContactId;
|
||||||
import static org.briarproject.bramble.test.TestUtils.getMessage;
|
import static org.briarproject.bramble.test.TestUtils.getMessage;
|
||||||
import static org.briarproject.bramble.test.TestUtils.getRandomId;
|
import static org.briarproject.bramble.test.TestUtils.getRandomId;
|
||||||
import static org.briarproject.bramble.test.TestUtils.getTransportId;
|
|
||||||
|
|
||||||
public class SimplexOutgoingSessionTest extends BrambleMockTestCase {
|
public class SimplexOutgoingSessionTest extends BrambleMockTestCase {
|
||||||
|
|
||||||
@@ -38,15 +36,14 @@ public class SimplexOutgoingSessionTest extends BrambleMockTestCase {
|
|||||||
|
|
||||||
private final Executor dbExecutor = new ImmediateExecutor();
|
private final Executor dbExecutor = new ImmediateExecutor();
|
||||||
private final ContactId contactId = getContactId();
|
private final ContactId contactId = getContactId();
|
||||||
private final TransportId transportId = getTransportId();
|
|
||||||
private final Message message = getMessage(new GroupId(getRandomId()));
|
private final Message message = getMessage(new GroupId(getRandomId()));
|
||||||
private final MessageId messageId = message.getId();
|
private final MessageId messageId = message.getId();
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void testNothingToSend() throws Exception {
|
public void testNothingToSend() throws Exception {
|
||||||
SimplexOutgoingSession session = new SimplexOutgoingSession(db,
|
SimplexOutgoingSession session = new SimplexOutgoingSession(db,
|
||||||
dbExecutor, eventBus, contactId, transportId, MAX_LATENCY,
|
dbExecutor, eventBus, contactId, MAX_LATENCY, streamWriter,
|
||||||
streamWriter, recordWriter);
|
recordWriter);
|
||||||
Transaction noAckTxn = new Transaction(null, false);
|
Transaction noAckTxn = new Transaction(null, false);
|
||||||
Transaction noMsgTxn = new Transaction(null, false);
|
Transaction noMsgTxn = new Transaction(null, false);
|
||||||
|
|
||||||
@@ -79,8 +76,8 @@ public class SimplexOutgoingSessionTest extends BrambleMockTestCase {
|
|||||||
public void testSomethingToSend() throws Exception {
|
public void testSomethingToSend() throws Exception {
|
||||||
Ack ack = new Ack(singletonList(messageId));
|
Ack ack = new Ack(singletonList(messageId));
|
||||||
SimplexOutgoingSession session = new SimplexOutgoingSession(db,
|
SimplexOutgoingSession session = new SimplexOutgoingSession(db,
|
||||||
dbExecutor, eventBus, contactId, transportId, MAX_LATENCY,
|
dbExecutor, eventBus, contactId, MAX_LATENCY, streamWriter,
|
||||||
streamWriter, recordWriter);
|
recordWriter);
|
||||||
Transaction ackTxn = new Transaction(null, false);
|
Transaction ackTxn = new Transaction(null, false);
|
||||||
Transaction noAckTxn = new Transaction(null, false);
|
Transaction noAckTxn = new Transaction(null, false);
|
||||||
Transaction msgTxn = new Transaction(null, false);
|
Transaction msgTxn = new Transaction(null, false);
|
||||||
|
|||||||
@@ -8,7 +8,6 @@ import org.briarproject.bramble.api.record.RecordReader;
|
|||||||
import org.briarproject.bramble.api.sync.Ack;
|
import org.briarproject.bramble.api.sync.Ack;
|
||||||
import org.briarproject.bramble.api.sync.MessageFactory;
|
import org.briarproject.bramble.api.sync.MessageFactory;
|
||||||
import org.briarproject.bramble.api.sync.Offer;
|
import org.briarproject.bramble.api.sync.Offer;
|
||||||
import org.briarproject.bramble.api.sync.Priority;
|
|
||||||
import org.briarproject.bramble.api.sync.Request;
|
import org.briarproject.bramble.api.sync.Request;
|
||||||
import org.briarproject.bramble.api.sync.SyncRecordReader;
|
import org.briarproject.bramble.api.sync.SyncRecordReader;
|
||||||
import org.briarproject.bramble.api.sync.Versions;
|
import org.briarproject.bramble.api.sync.Versions;
|
||||||
@@ -25,14 +24,11 @@ import javax.annotation.Nullable;
|
|||||||
import static org.briarproject.bramble.api.record.Record.MAX_RECORD_PAYLOAD_BYTES;
|
import static org.briarproject.bramble.api.record.Record.MAX_RECORD_PAYLOAD_BYTES;
|
||||||
import static org.briarproject.bramble.api.sync.RecordTypes.ACK;
|
import static org.briarproject.bramble.api.sync.RecordTypes.ACK;
|
||||||
import static org.briarproject.bramble.api.sync.RecordTypes.OFFER;
|
import static org.briarproject.bramble.api.sync.RecordTypes.OFFER;
|
||||||
import static org.briarproject.bramble.api.sync.RecordTypes.PRIORITY;
|
|
||||||
import static org.briarproject.bramble.api.sync.RecordTypes.REQUEST;
|
import static org.briarproject.bramble.api.sync.RecordTypes.REQUEST;
|
||||||
import static org.briarproject.bramble.api.sync.RecordTypes.VERSIONS;
|
import static org.briarproject.bramble.api.sync.RecordTypes.VERSIONS;
|
||||||
import static org.briarproject.bramble.api.sync.SyncConstants.MAX_MESSAGE_IDS;
|
import static org.briarproject.bramble.api.sync.SyncConstants.MAX_MESSAGE_IDS;
|
||||||
import static org.briarproject.bramble.api.sync.SyncConstants.MAX_SUPPORTED_VERSIONS;
|
import static org.briarproject.bramble.api.sync.SyncConstants.MAX_SUPPORTED_VERSIONS;
|
||||||
import static org.briarproject.bramble.api.sync.SyncConstants.PRIORITY_NONCE_BYTES;
|
|
||||||
import static org.briarproject.bramble.api.sync.SyncConstants.PROTOCOL_VERSION;
|
import static org.briarproject.bramble.api.sync.SyncConstants.PROTOCOL_VERSION;
|
||||||
import static org.briarproject.bramble.test.TestUtils.getRandomBytes;
|
|
||||||
import static org.briarproject.bramble.test.TestUtils.getRandomId;
|
import static org.briarproject.bramble.test.TestUtils.getRandomId;
|
||||||
import static org.junit.Assert.assertEquals;
|
import static org.junit.Assert.assertEquals;
|
||||||
import static org.junit.Assert.assertFalse;
|
import static org.junit.Assert.assertFalse;
|
||||||
@@ -123,31 +119,6 @@ public class SyncRecordReaderImplTest extends BrambleMockTestCase {
|
|||||||
reader.readVersions();
|
reader.readVersions();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test(expected = FormatException.class)
|
|
||||||
public void testFormatExceptionIfPriorityNonceIsTooSmall()
|
|
||||||
throws Exception {
|
|
||||||
expectReadRecord(createPriority(PRIORITY_NONCE_BYTES - 1));
|
|
||||||
|
|
||||||
reader.readPriority();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Test(expected = FormatException.class)
|
|
||||||
public void testFormatExceptionIfPriorityNonceIsTooLarge()
|
|
||||||
throws Exception {
|
|
||||||
expectReadRecord(createPriority(PRIORITY_NONCE_BYTES + 1));
|
|
||||||
|
|
||||||
reader.readPriority();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Test
|
|
||||||
public void testNoFormatExceptionIfPriorityNonceIsCorrectSize()
|
|
||||||
throws Exception {
|
|
||||||
expectReadRecord(createPriority(PRIORITY_NONCE_BYTES));
|
|
||||||
|
|
||||||
Priority priority = reader.readPriority();
|
|
||||||
assertEquals(PRIORITY_NONCE_BYTES, priority.getNonce().length);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void testEofReturnsTrueWhenAtEndOfStream() throws Exception {
|
public void testEofReturnsTrueWhenAtEndOfStream() throws Exception {
|
||||||
expectReadRecord(createAck());
|
expectReadRecord(createAck());
|
||||||
@@ -202,11 +173,6 @@ public class SyncRecordReaderImplTest extends BrambleMockTestCase {
|
|||||||
return new Record(PROTOCOL_VERSION, VERSIONS, payload);
|
return new Record(PROTOCOL_VERSION, VERSIONS, payload);
|
||||||
}
|
}
|
||||||
|
|
||||||
private Record createPriority(int nonceBytes) {
|
|
||||||
byte[] payload = getRandomBytes(nonceBytes);
|
|
||||||
return new Record(PROTOCOL_VERSION, PRIORITY, payload);
|
|
||||||
}
|
|
||||||
|
|
||||||
private byte[] createPayload() throws Exception {
|
private byte[] createPayload() throws Exception {
|
||||||
ByteArrayOutputStream payload = new ByteArrayOutputStream();
|
ByteArrayOutputStream payload = new ByteArrayOutputStream();
|
||||||
while (payload.size() + UniqueId.LENGTH <= MAX_RECORD_PAYLOAD_BYTES) {
|
while (payload.size() + UniqueId.LENGTH <= MAX_RECORD_PAYLOAD_BYTES) {
|
||||||
|
|||||||
@@ -4,7 +4,6 @@ import org.briarproject.bramble.api.nullsafety.NotNullByDefault;
|
|||||||
import org.briarproject.bramble.api.plugin.TransportConnectionReader;
|
import org.briarproject.bramble.api.plugin.TransportConnectionReader;
|
||||||
import org.briarproject.bramble.api.plugin.TransportConnectionWriter;
|
import org.briarproject.bramble.api.plugin.TransportConnectionWriter;
|
||||||
import org.briarproject.bramble.api.plugin.duplex.DuplexTransportConnection;
|
import org.briarproject.bramble.api.plugin.duplex.DuplexTransportConnection;
|
||||||
import org.briarproject.bramble.api.properties.TransportProperties;
|
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.io.InputStream;
|
import java.io.InputStream;
|
||||||
@@ -38,11 +37,6 @@ public class TestDuplexTransportConnection
|
|||||||
return writer;
|
return writer;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
public TransportProperties getRemoteProperties() {
|
|
||||||
return new TransportProperties();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates and returns a pair of TestDuplexTransportConnections that are
|
* Creates and returns a pair of TestDuplexTransportConnections that are
|
||||||
* connected to each other.
|
* connected to each other.
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user