2020-01-17 14:43:35 +03:00
|
|
|
|
/*
|
|
|
|
|
Copyright 2020 The Matrix.org Foundation C.I.C.
|
|
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
|
limitations under the License.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
import { MatrixClientPeg } from './MatrixClientPeg';
|
|
|
|
|
import SettingsStore from './settings/SettingsStore';
|
|
|
|
|
import * as sdk from './index';
|
|
|
|
|
import { _t } from './languageHandler';
|
|
|
|
|
import ToastStore from './stores/ToastStore';
|
|
|
|
|
|
2020-01-25 19:52:12 +03:00
|
|
|
|
const KEY_BACKUP_POLL_INTERVAL = 5 * 60 * 1000;
|
|
|
|
|
const THIS_DEVICE_TOAST_KEY = 'setupencryption';
|
2020-04-27 20:33:54 +03:00
|
|
|
|
const OTHER_DEVICES_TOAST_KEY = 'reviewsessions';
|
2020-01-25 19:52:12 +03:00
|
|
|
|
|
2020-04-28 20:35:16 +03:00
|
|
|
|
function toastKey(deviceId) {
|
|
|
|
|
return "unverified_session_" + deviceId;
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-17 14:43:35 +03:00
|
|
|
|
export default class DeviceListener {
|
|
|
|
|
static sharedInstance() {
|
|
|
|
|
if (!global.mx_DeviceListener) global.mx_DeviceListener = new DeviceListener();
|
|
|
|
|
return global.mx_DeviceListener;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
constructor() {
|
|
|
|
|
// device IDs for which the user has dismissed the verify toast ('Later')
|
|
|
|
|
this._dismissed = new Set();
|
2020-01-25 19:52:12 +03:00
|
|
|
|
// has the user dismissed any of the various nag toasts to setup encryption on this device?
|
|
|
|
|
this._dismissedThisDeviceToast = false;
|
|
|
|
|
|
|
|
|
|
// cache of the key backup info
|
|
|
|
|
this._keyBackupInfo = null;
|
|
|
|
|
this._keyBackupFetchedAt = null;
|
2020-04-28 20:35:16 +03:00
|
|
|
|
|
|
|
|
|
// We keep a list of our own device IDs so we can batch ones that were already
|
|
|
|
|
// there the last time the app launched into a single toast, but display new
|
|
|
|
|
// ones in their own toasts.
|
|
|
|
|
this._ourDeviceIdsAtStart = null;
|
|
|
|
|
|
|
|
|
|
// The set of device IDs we're currently displaying toasts for
|
|
|
|
|
this._displayingToastsForDeviceIds = new Set();
|
2020-01-17 14:43:35 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
start() {
|
2020-04-28 20:35:16 +03:00
|
|
|
|
MatrixClientPeg.get().on('crypto.willUpdateDevices', this._onWillUpdateDevices);
|
2020-01-17 14:43:35 +03:00
|
|
|
|
MatrixClientPeg.get().on('crypto.devicesUpdated', this._onDevicesUpdated);
|
|
|
|
|
MatrixClientPeg.get().on('deviceVerificationChanged', this._onDeviceVerificationChanged);
|
2020-01-25 19:52:12 +03:00
|
|
|
|
MatrixClientPeg.get().on('userTrustStatusChanged', this._onUserTrustStatusChanged);
|
2020-04-09 14:43:51 +03:00
|
|
|
|
MatrixClientPeg.get().on('crossSigning.keysChanged', this._onCrossSingingKeysChanged);
|
2020-03-20 21:53:31 +03:00
|
|
|
|
MatrixClientPeg.get().on('accountData', this._onAccountData);
|
2020-04-20 16:36:15 +03:00
|
|
|
|
MatrixClientPeg.get().on('sync', this._onSync);
|
2020-01-25 19:52:12 +03:00
|
|
|
|
this._recheck();
|
2020-01-17 14:43:35 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
stop() {
|
|
|
|
|
if (MatrixClientPeg.get()) {
|
2020-04-28 20:35:16 +03:00
|
|
|
|
MatrixClientPeg.get().removeListener('crypto.willUpdateDevices', this._onWillUpdateDevices);
|
2020-01-17 14:43:35 +03:00
|
|
|
|
MatrixClientPeg.get().removeListener('crypto.devicesUpdated', this._onDevicesUpdated);
|
|
|
|
|
MatrixClientPeg.get().removeListener('deviceVerificationChanged', this._onDeviceVerificationChanged);
|
2020-01-25 19:52:12 +03:00
|
|
|
|
MatrixClientPeg.get().removeListener('userTrustStatusChanged', this._onUserTrustStatusChanged);
|
2020-04-09 14:43:51 +03:00
|
|
|
|
MatrixClientPeg.get().removeListener('crossSigning.keysChanged', this._onCrossSingingKeysChanged);
|
2020-03-20 21:53:31 +03:00
|
|
|
|
MatrixClientPeg.get().removeListener('accountData', this._onAccountData);
|
2020-04-20 16:36:15 +03:00
|
|
|
|
MatrixClientPeg.get().removeListener('sync', this._onSync);
|
2020-01-17 14:43:35 +03:00
|
|
|
|
}
|
|
|
|
|
this._dismissed.clear();
|
2020-04-24 17:58:28 +03:00
|
|
|
|
this._dismissedThisDeviceToast = false;
|
|
|
|
|
this._keyBackupInfo = null;
|
|
|
|
|
this._keyBackupFetchedAt = null;
|
2020-01-17 14:43:35 +03:00
|
|
|
|
}
|
|
|
|
|
|
2020-04-28 20:35:16 +03:00
|
|
|
|
/**
|
|
|
|
|
* Dismiss notifications about our own unverified devices
|
|
|
|
|
*
|
|
|
|
|
* @param {String[]} deviceIds List of device IDs to dismiss notifications for
|
|
|
|
|
*/
|
|
|
|
|
async dismissUnverifiedSessions(deviceIds) {
|
|
|
|
|
for (const d of deviceIds) {
|
|
|
|
|
this._dismissed.add(d);
|
|
|
|
|
}
|
2020-04-27 20:33:54 +03:00
|
|
|
|
|
2020-01-25 19:52:12 +03:00
|
|
|
|
this._recheck();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dismissEncryptionSetup() {
|
|
|
|
|
this._dismissedThisDeviceToast = true;
|
|
|
|
|
this._recheck();
|
2020-01-17 14:43:35 +03:00
|
|
|
|
}
|
|
|
|
|
|
2020-04-28 20:35:16 +03:00
|
|
|
|
_ensureDeviceIdsAtStartPopulated() {
|
|
|
|
|
if (this._ourDeviceIdsAtStart === null) {
|
|
|
|
|
const cli = MatrixClientPeg.get();
|
|
|
|
|
this._ourDeviceIdsAtStart = new Set(
|
|
|
|
|
cli.getStoredDevicesForUser(cli.getUserId()).map(d => d.deviceId),
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-04-29 19:16:04 +03:00
|
|
|
|
_onWillUpdateDevices = async (users, initialFetch) => {
|
2020-04-29 19:33:18 +03:00
|
|
|
|
// If we didn't know about *any* devices before (ie. it's fresh login),
|
2020-04-29 19:16:04 +03:00
|
|
|
|
// then they are all pre-existing devices, so ignore this and set the
|
|
|
|
|
// devicesAtStart list to the devices that we see after the fetch.
|
|
|
|
|
if (initialFetch) return;
|
|
|
|
|
|
2020-04-28 20:35:16 +03:00
|
|
|
|
const myUserId = MatrixClientPeg.get().getUserId();
|
|
|
|
|
if (users.includes(myUserId)) this._ensureDeviceIdsAtStartPopulated();
|
2020-04-29 12:55:44 +03:00
|
|
|
|
|
|
|
|
|
// No need to do a recheck here: we just need to get a snapshot of our devices
|
2020-04-29 13:25:18 +03:00
|
|
|
|
// before we download any new ones.
|
2020-04-28 20:35:16 +03:00
|
|
|
|
}
|
|
|
|
|
|
2020-01-17 14:43:35 +03:00
|
|
|
|
_onDevicesUpdated = (users) => {
|
|
|
|
|
if (!users.includes(MatrixClientPeg.get().getUserId())) return;
|
2020-01-25 19:52:12 +03:00
|
|
|
|
this._recheck();
|
2020-01-17 14:43:35 +03:00
|
|
|
|
}
|
|
|
|
|
|
2020-01-30 00:55:27 +03:00
|
|
|
|
_onDeviceVerificationChanged = (userId) => {
|
|
|
|
|
if (userId !== MatrixClientPeg.get().getUserId()) return;
|
2020-01-25 19:52:12 +03:00
|
|
|
|
this._recheck();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_onUserTrustStatusChanged = (userId, trustLevel) => {
|
|
|
|
|
if (userId !== MatrixClientPeg.get().getUserId()) return;
|
|
|
|
|
this._recheck();
|
|
|
|
|
}
|
|
|
|
|
|
2020-04-09 14:43:51 +03:00
|
|
|
|
_onCrossSingingKeysChanged = () => {
|
|
|
|
|
this._recheck();
|
|
|
|
|
}
|
|
|
|
|
|
2020-03-20 21:53:31 +03:00
|
|
|
|
_onAccountData = (ev) => {
|
2020-04-07 12:57:10 +03:00
|
|
|
|
// User may have:
|
|
|
|
|
// * migrated SSSS to symmetric
|
|
|
|
|
// * uploaded keys to secret storage
|
|
|
|
|
// * completed secret storage creation
|
|
|
|
|
// which result in account data changes affecting checks below.
|
|
|
|
|
if (
|
|
|
|
|
ev.getType().startsWith('m.secret_storage.') ||
|
|
|
|
|
ev.getType().startsWith('m.cross_signing.')
|
|
|
|
|
) {
|
2020-03-20 21:53:31 +03:00
|
|
|
|
this._recheck();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-04-20 16:36:15 +03:00
|
|
|
|
_onSync = (state, prevState) => {
|
|
|
|
|
if (state === 'PREPARED' && prevState === null) this._recheck();
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-25 19:52:12 +03:00
|
|
|
|
// The server doesn't tell us when key backup is set up, so we poll
|
|
|
|
|
// & cache the result
|
|
|
|
|
async _getKeyBackupInfo() {
|
|
|
|
|
const now = (new Date()).getTime();
|
|
|
|
|
if (!this._keyBackupInfo || this._keyBackupFetchedAt < now - KEY_BACKUP_POLL_INTERVAL) {
|
|
|
|
|
this._keyBackupInfo = await MatrixClientPeg.get().getKeyBackupVersion();
|
|
|
|
|
this._keyBackupFetchedAt = now;
|
|
|
|
|
}
|
|
|
|
|
return this._keyBackupInfo;
|
2020-01-17 14:43:35 +03:00
|
|
|
|
}
|
|
|
|
|
|
2020-01-25 19:52:12 +03:00
|
|
|
|
async _recheck() {
|
2020-01-17 14:43:35 +03:00
|
|
|
|
const cli = MatrixClientPeg.get();
|
|
|
|
|
|
2020-03-12 21:03:18 +03:00
|
|
|
|
if (
|
2020-04-15 22:18:42 +03:00
|
|
|
|
!SettingsStore.getValue("feature_cross_signing") ||
|
2020-03-12 21:03:18 +03:00
|
|
|
|
!await cli.doesServerSupportUnstableFeature("org.matrix.e2e_cross_signing")
|
|
|
|
|
) return;
|
|
|
|
|
|
2020-01-25 19:52:12 +03:00
|
|
|
|
if (!cli.isCryptoEnabled()) return;
|
2020-04-20 16:36:15 +03:00
|
|
|
|
// don't recheck until the initial sync is complete: lots of account data events will fire
|
|
|
|
|
// while the initial sync is processing and we don't need to recheck on each one of them
|
|
|
|
|
// (we add a listener on sync to do once check after the initial sync is done)
|
|
|
|
|
if (!cli.isInitialSyncComplete()) return;
|
2020-03-23 21:36:37 +03:00
|
|
|
|
|
2020-03-24 16:03:07 +03:00
|
|
|
|
const crossSigningReady = await cli.isCrossSigningReady();
|
2020-03-23 21:36:37 +03:00
|
|
|
|
|
2020-03-27 18:45:46 +03:00
|
|
|
|
if (this._dismissedThisDeviceToast) {
|
|
|
|
|
ToastStore.sharedInstance().dismissToast(THIS_DEVICE_TOAST_KEY);
|
|
|
|
|
} else {
|
|
|
|
|
if (!crossSigningReady) {
|
2020-04-24 17:58:28 +03:00
|
|
|
|
// make sure our keys are finished downlaoding
|
|
|
|
|
await cli.downloadKeys([cli.getUserId()]);
|
2020-03-27 18:45:46 +03:00
|
|
|
|
// cross signing isn't enabled - nag to enable it
|
|
|
|
|
// There are 3 different toasts for:
|
|
|
|
|
if (cli.getStoredCrossSigningForUser(cli.getUserId())) {
|
|
|
|
|
// Cross-signing on account but this device doesn't trust the master key (verify this session)
|
2020-01-25 19:52:12 +03:00
|
|
|
|
ToastStore.sharedInstance().addOrReplaceToast({
|
|
|
|
|
key: THIS_DEVICE_TOAST_KEY,
|
2020-03-27 18:45:46 +03:00
|
|
|
|
title: _t("Verify this session"),
|
2020-01-25 19:52:12 +03:00
|
|
|
|
icon: "verification_warning",
|
2020-03-27 18:45:46 +03:00
|
|
|
|
props: {kind: 'verify_this_session'},
|
2020-01-25 19:52:12 +03:00
|
|
|
|
component: sdk.getComponent("toasts.SetupEncryptionToast"),
|
|
|
|
|
});
|
|
|
|
|
} else {
|
2020-03-27 18:45:46 +03:00
|
|
|
|
const backupInfo = await this._getKeyBackupInfo();
|
|
|
|
|
if (backupInfo) {
|
|
|
|
|
// No cross-signing on account but key backup available (upgrade encryption)
|
|
|
|
|
ToastStore.sharedInstance().addOrReplaceToast({
|
|
|
|
|
key: THIS_DEVICE_TOAST_KEY,
|
|
|
|
|
title: _t("Encryption upgrade available"),
|
|
|
|
|
icon: "verification_warning",
|
|
|
|
|
props: {kind: 'upgrade_encryption'},
|
|
|
|
|
component: sdk.getComponent("toasts.SetupEncryptionToast"),
|
|
|
|
|
});
|
|
|
|
|
} else {
|
|
|
|
|
// No cross-signing or key backup on account (set up encryption)
|
|
|
|
|
ToastStore.sharedInstance().addOrReplaceToast({
|
|
|
|
|
key: THIS_DEVICE_TOAST_KEY,
|
|
|
|
|
title: _t("Set up encryption"),
|
|
|
|
|
icon: "verification_warning",
|
|
|
|
|
props: {kind: 'set_up_encryption'},
|
|
|
|
|
component: sdk.getComponent("toasts.SetupEncryptionToast"),
|
|
|
|
|
});
|
|
|
|
|
}
|
2020-01-25 19:52:12 +03:00
|
|
|
|
}
|
2020-03-27 18:45:46 +03:00
|
|
|
|
} else if (await cli.secretStorageKeyNeedsUpgrade()) {
|
|
|
|
|
ToastStore.sharedInstance().addOrReplaceToast({
|
|
|
|
|
key: THIS_DEVICE_TOAST_KEY,
|
|
|
|
|
title: _t("Encryption upgrade available"),
|
|
|
|
|
icon: "verification_warning",
|
|
|
|
|
props: {kind: 'upgrade_ssss'},
|
|
|
|
|
component: sdk.getComponent("toasts.SetupEncryptionToast"),
|
|
|
|
|
});
|
2020-04-02 17:07:55 +03:00
|
|
|
|
} else {
|
|
|
|
|
// cross-signing is ready, and we don't need to upgrade encryption
|
|
|
|
|
ToastStore.sharedInstance().dismissToast(THIS_DEVICE_TOAST_KEY);
|
2020-03-20 22:01:26 +03:00
|
|
|
|
}
|
2020-01-25 19:52:12 +03:00
|
|
|
|
}
|
2020-01-17 17:08:37 +03:00
|
|
|
|
|
2020-04-29 19:16:04 +03:00
|
|
|
|
// This needs to be done after awaiting on downloadKeys() above, so
|
|
|
|
|
// we make sure we get the devices after the fetch is done.
|
|
|
|
|
this._ensureDeviceIdsAtStartPopulated();
|
|
|
|
|
|
2020-04-28 20:35:16 +03:00
|
|
|
|
// Unverified devices that were there last time the app ran
|
|
|
|
|
// (technically could just be a boolean: we don't actually
|
|
|
|
|
// need to remember the device IDs, but for the sake of
|
|
|
|
|
// symmetry...).
|
|
|
|
|
const oldUnverifiedDeviceIds = new Set();
|
|
|
|
|
// Unverified devices that have appeared since then
|
|
|
|
|
const newUnverifiedDeviceIds = new Set();
|
|
|
|
|
|
2020-03-27 18:45:46 +03:00
|
|
|
|
// as long as cross-signing isn't ready,
|
|
|
|
|
// you can't see or dismiss any device toasts
|
|
|
|
|
if (crossSigningReady) {
|
2020-04-28 20:35:16 +03:00
|
|
|
|
const devices = cli.getStoredDevicesForUser(cli.getUserId());
|
2020-03-27 18:45:46 +03:00
|
|
|
|
for (const device of devices) {
|
|
|
|
|
if (device.deviceId == cli.deviceId) continue;
|
2020-01-17 14:43:35 +03:00
|
|
|
|
|
2020-03-27 18:45:46 +03:00
|
|
|
|
const deviceTrust = await cli.checkDeviceTrust(cli.getUserId(), device.deviceId);
|
2020-04-27 20:33:54 +03:00
|
|
|
|
if (!deviceTrust.isCrossSigningVerified() && !this._dismissed.has(device.deviceId)) {
|
2020-04-28 20:35:16 +03:00
|
|
|
|
if (this._ourDeviceIdsAtStart.has(device.deviceId)) {
|
|
|
|
|
oldUnverifiedDeviceIds.add(device.deviceId);
|
|
|
|
|
} else {
|
|
|
|
|
newUnverifiedDeviceIds.add(device.deviceId);
|
|
|
|
|
}
|
2020-03-27 18:45:46 +03:00
|
|
|
|
}
|
2020-01-17 14:43:35 +03:00
|
|
|
|
}
|
2020-04-28 20:35:16 +03:00
|
|
|
|
}
|
2020-01-25 20:08:31 +03:00
|
|
|
|
|
2020-04-28 20:35:16 +03:00
|
|
|
|
// Display or hide the batch toast for old unverified sessions
|
|
|
|
|
if (oldUnverifiedDeviceIds.size > 0) {
|
|
|
|
|
ToastStore.sharedInstance().addOrReplaceToast({
|
|
|
|
|
key: OTHER_DEVICES_TOAST_KEY,
|
|
|
|
|
title: _t("Review where you’re logged in"),
|
|
|
|
|
icon: "verification_warning",
|
2020-04-29 16:49:30 +03:00
|
|
|
|
priority: ToastStore.PRIORITY_LOW,
|
2020-04-28 20:35:16 +03:00
|
|
|
|
props: {
|
|
|
|
|
deviceIds: oldUnverifiedDeviceIds,
|
|
|
|
|
},
|
|
|
|
|
component: sdk.getComponent("toasts.BulkUnverifiedSessionsToast"),
|
|
|
|
|
});
|
|
|
|
|
} else {
|
|
|
|
|
ToastStore.sharedInstance().dismissToast(OTHER_DEVICES_TOAST_KEY);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Show toasts for new unverified devices if they aren't already there
|
|
|
|
|
for (const deviceId of newUnverifiedDeviceIds) {
|
|
|
|
|
ToastStore.sharedInstance().addOrReplaceToast({
|
|
|
|
|
key: toastKey(deviceId),
|
2020-04-29 12:53:36 +03:00
|
|
|
|
title: _t("New login. Was this you?"),
|
2020-04-28 20:35:16 +03:00
|
|
|
|
icon: "verification_warning",
|
|
|
|
|
props: { deviceId },
|
|
|
|
|
component: sdk.getComponent("toasts.UnverifiedSessionToast"),
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// ...and hide any we don't need any more
|
|
|
|
|
for (const deviceId of this._displayingToastsForDeviceIds) {
|
|
|
|
|
if (!newUnverifiedDeviceIds.has(deviceId)) {
|
|
|
|
|
ToastStore.sharedInstance().dismissToast(toastKey(deviceId));
|
2020-03-27 18:45:46 +03:00
|
|
|
|
}
|
2020-01-25 20:08:31 +03:00
|
|
|
|
}
|
2020-04-28 20:35:16 +03:00
|
|
|
|
|
|
|
|
|
this._displayingToastsForDeviceIds = newUnverifiedDeviceIds;
|
2020-01-17 14:43:35 +03:00
|
|
|
|
}
|
|
|
|
|
}
|