You've already forked matrix-js-sdk
mirror of
https://github.com/matrix-org/matrix-js-sdk.git
synced 2025-11-26 17:03:12 +03:00
1371 lines
45 KiB
JavaScript
1371 lines
45 KiB
JavaScript
/*
|
|
Copyright 2016 OpenMarket Ltd
|
|
Copyright 2017 Vector Creations Ltd
|
|
|
|
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.
|
|
*/
|
|
"use strict";
|
|
|
|
/**
|
|
* @module crypto
|
|
*/
|
|
|
|
const anotherjson = require('another-json');
|
|
import Promise from 'bluebird';
|
|
import {EventEmitter} from 'events';
|
|
|
|
const utils = require("../utils");
|
|
const OlmDevice = require("./OlmDevice");
|
|
const olmlib = require("./olmlib");
|
|
const algorithms = require("./algorithms");
|
|
const DeviceInfo = require("./deviceinfo");
|
|
const DeviceVerification = DeviceInfo.DeviceVerification;
|
|
const DeviceList = require('./DeviceList').default;
|
|
|
|
import OutgoingRoomKeyRequestManager from './OutgoingRoomKeyRequestManager';
|
|
import IndexedDBCryptoStore from './store/indexeddb-crypto-store';
|
|
|
|
/**
|
|
* Cryptography bits
|
|
*
|
|
* This module is internal to the js-sdk; the public API is via MatrixClient.
|
|
*
|
|
* @constructor
|
|
* @alias module:crypto
|
|
*
|
|
* @internal
|
|
*
|
|
* @param {module:base-apis~MatrixBaseApis} baseApis base matrix api interface
|
|
*
|
|
* @param {module:store/session/webstorage~WebStorageSessionStore} sessionStore
|
|
* Store to be used for end-to-end crypto session data
|
|
*
|
|
* @param {string} userId The user ID for the local user
|
|
*
|
|
* @param {string} deviceId The identifier for this device.
|
|
*
|
|
* @param {Object} clientStore the MatrixClient data store.
|
|
*
|
|
* @param {module:crypto/store/base~CryptoStore} cryptoStore
|
|
* storage for the crypto layer.
|
|
*/
|
|
function Crypto(baseApis, sessionStore, userId, deviceId,
|
|
clientStore, cryptoStore) {
|
|
this._baseApis = baseApis;
|
|
this._sessionStore = sessionStore;
|
|
this._userId = userId;
|
|
this._deviceId = deviceId;
|
|
this._clientStore = clientStore;
|
|
this._cryptoStore = cryptoStore;
|
|
|
|
this._olmDevice = new OlmDevice(sessionStore, cryptoStore);
|
|
this._deviceList = new DeviceList(baseApis, cryptoStore, this._olmDevice);
|
|
|
|
// the last time we did a check for the number of one-time-keys on the
|
|
// server.
|
|
this._lastOneTimeKeyCheck = null;
|
|
this._oneTimeKeyCheckInProgress = false;
|
|
|
|
// EncryptionAlgorithm instance for each room
|
|
this._roomEncryptors = {};
|
|
|
|
// map from algorithm to DecryptionAlgorithm instance, for each room
|
|
this._roomDecryptors = {};
|
|
|
|
this._supportedAlgorithms = utils.keys(
|
|
algorithms.DECRYPTION_CLASSES,
|
|
);
|
|
|
|
this._deviceKeys = {};
|
|
|
|
this._globalBlacklistUnverifiedDevices = false;
|
|
|
|
this._outgoingRoomKeyRequestManager = new OutgoingRoomKeyRequestManager(
|
|
baseApis, this._deviceId, this._cryptoStore,
|
|
);
|
|
|
|
// list of IncomingRoomKeyRequests/IncomingRoomKeyRequestCancellations
|
|
// we received in the current sync.
|
|
this._receivedRoomKeyRequests = [];
|
|
this._receivedRoomKeyRequestCancellations = [];
|
|
// true if we are currently processing received room key requests
|
|
this._processingRoomKeyRequests = false;
|
|
}
|
|
utils.inherits(Crypto, EventEmitter);
|
|
|
|
/**
|
|
* Initialise the crypto module so that it is ready for use
|
|
*
|
|
* Returns a promise which resolves once the crypto module is ready for use.
|
|
*/
|
|
Crypto.prototype.init = async function() {
|
|
const sessionStoreHasAccount = Boolean(this._sessionStore.getEndToEndAccount());
|
|
let cryptoStoreHasAccount;
|
|
await this._cryptoStore.doTxn(
|
|
'readonly', [IndexedDBCryptoStore.STORE_ACCOUNT], (txn) => {
|
|
this._cryptoStore.getAccount(txn, (pickledAccount) => {
|
|
cryptoStoreHasAccount = Boolean(pickledAccount);
|
|
});
|
|
},
|
|
);
|
|
if (sessionStoreHasAccount && !cryptoStoreHasAccount) {
|
|
// we're about to migrate to the crypto store
|
|
this.emit("crypto.warning", 'CRYPTO_WARNING_ACCOUNT_MIGRATED');
|
|
} else if (sessionStoreHasAccount && cryptoStoreHasAccount) {
|
|
// There's an account in both stores: an old version of
|
|
// the code has been run against this store.
|
|
this.emit("crypto.warning", 'CRYPTO_WARNING_OLD_VERSION_DETECTED');
|
|
}
|
|
|
|
await this._olmDevice.init();
|
|
await this._deviceList.load();
|
|
|
|
// build our device keys: these will later be uploaded
|
|
this._deviceKeys["ed25519:" + this._deviceId] =
|
|
this._olmDevice.deviceEd25519Key;
|
|
this._deviceKeys["curve25519:" + this._deviceId] =
|
|
this._olmDevice.deviceCurve25519Key;
|
|
|
|
let myDevices = this._deviceList.getRawStoredDevicesForUser(
|
|
this._userId,
|
|
);
|
|
|
|
if (!myDevices) {
|
|
myDevices = {};
|
|
}
|
|
|
|
if (!myDevices[this._deviceId]) {
|
|
// add our own deviceinfo to the sessionstore
|
|
const deviceInfo = {
|
|
keys: this._deviceKeys,
|
|
algorithms: this._supportedAlgorithms,
|
|
verified: DeviceVerification.VERIFIED,
|
|
known: true,
|
|
};
|
|
|
|
myDevices[this._deviceId] = deviceInfo;
|
|
this._deviceList.storeDevicesForUser(
|
|
this._userId, myDevices,
|
|
);
|
|
this._deviceList.saveIfDirty();
|
|
}
|
|
};
|
|
|
|
/**
|
|
* Tell the crypto module to register for MatrixClient events which it needs to
|
|
* listen for
|
|
*
|
|
* @param {external:EventEmitter} eventEmitter event source where we can register
|
|
* for event notifications
|
|
*/
|
|
Crypto.prototype.registerEventHandlers = function(eventEmitter) {
|
|
const crypto = this;
|
|
|
|
eventEmitter.on("RoomMember.membership", function(event, member, oldMembership) {
|
|
try {
|
|
crypto._onRoomMembership(event, member, oldMembership);
|
|
} catch (e) {
|
|
console.error("Error handling membership change:", e);
|
|
}
|
|
});
|
|
|
|
eventEmitter.on("toDeviceEvent", function(event) {
|
|
crypto._onToDeviceEvent(event);
|
|
});
|
|
};
|
|
|
|
|
|
/** Start background processes related to crypto */
|
|
Crypto.prototype.start = function() {
|
|
this._outgoingRoomKeyRequestManager.start();
|
|
};
|
|
|
|
/** Stop background processes related to crypto */
|
|
Crypto.prototype.stop = function() {
|
|
this._outgoingRoomKeyRequestManager.stop();
|
|
};
|
|
|
|
/**
|
|
* @return {string} The version of Olm.
|
|
*/
|
|
Crypto.getOlmVersion = function() {
|
|
return OlmDevice.getOlmVersion();
|
|
};
|
|
|
|
/**
|
|
* Get the Ed25519 key for this device
|
|
*
|
|
* @return {string} base64-encoded ed25519 key.
|
|
*/
|
|
Crypto.prototype.getDeviceEd25519Key = function() {
|
|
return this._olmDevice.deviceEd25519Key;
|
|
};
|
|
|
|
/**
|
|
* Set the global override for whether the client should ever send encrypted
|
|
* messages to unverified devices. This provides the default for rooms which
|
|
* do not specify a value.
|
|
*
|
|
* @param {boolean} value whether to blacklist all unverified devices by default
|
|
*/
|
|
Crypto.prototype.setGlobalBlacklistUnverifiedDevices = function(value) {
|
|
this._globalBlacklistUnverifiedDevices = value;
|
|
};
|
|
|
|
/**
|
|
* @return {boolean} whether to blacklist all unverified devices by default
|
|
*/
|
|
Crypto.prototype.getGlobalBlacklistUnverifiedDevices = function() {
|
|
return this._globalBlacklistUnverifiedDevices;
|
|
};
|
|
|
|
/**
|
|
* Upload the device keys to the homeserver.
|
|
* @return {object} A promise that will resolve when the keys are uploaded.
|
|
*/
|
|
Crypto.prototype.uploadDeviceKeys = function() {
|
|
const crypto = this;
|
|
const userId = crypto._userId;
|
|
const deviceId = crypto._deviceId;
|
|
|
|
const deviceKeys = {
|
|
algorithms: crypto._supportedAlgorithms,
|
|
device_id: deviceId,
|
|
keys: crypto._deviceKeys,
|
|
user_id: userId,
|
|
};
|
|
|
|
return crypto._signObject(deviceKeys).then(() => {
|
|
crypto._baseApis.uploadKeysRequest({
|
|
device_keys: deviceKeys,
|
|
}, {
|
|
// for now, we set the device id explicitly, as we may not be using the
|
|
// same one as used in login.
|
|
device_id: deviceId,
|
|
});
|
|
});
|
|
};
|
|
|
|
/**
|
|
* Stores the current one_time_key count which will be handled later (in a call of
|
|
* onSyncCompleted). The count is e.g. coming from a /sync response.
|
|
*
|
|
* @param {Number} currentCount The current count of one_time_keys to be stored
|
|
*/
|
|
Crypto.prototype.updateOneTimeKeyCount = function(currentCount) {
|
|
if (isFinite(currentCount)) {
|
|
this._oneTimeKeyCount = currentCount;
|
|
} else {
|
|
throw new TypeError("Parameter for updateOneTimeKeyCount has to be a number");
|
|
}
|
|
};
|
|
|
|
// check if it's time to upload one-time keys, and do so if so.
|
|
function _maybeUploadOneTimeKeys(crypto) {
|
|
// frequency with which to check & upload one-time keys
|
|
const uploadPeriod = 1000 * 60; // one minute
|
|
|
|
// max number of keys to upload at once
|
|
// Creating keys can be an expensive operation so we limit the
|
|
// number we generate in one go to avoid blocking the application
|
|
// for too long.
|
|
const maxKeysPerCycle = 5;
|
|
|
|
if (crypto._oneTimeKeyCheckInProgress) {
|
|
return;
|
|
}
|
|
|
|
const now = Date.now();
|
|
if (crypto._lastOneTimeKeyCheck !== null &&
|
|
now - crypto._lastOneTimeKeyCheck < uploadPeriod
|
|
) {
|
|
// we've done a key upload recently.
|
|
return;
|
|
}
|
|
|
|
crypto._lastOneTimeKeyCheck = now;
|
|
|
|
// We need to keep a pool of one time public keys on the server so that
|
|
// other devices can start conversations with us. But we can only store
|
|
// a finite number of private keys in the olm Account object.
|
|
// To complicate things further then can be a delay between a device
|
|
// claiming a public one time key from the server and it sending us a
|
|
// message. We need to keep the corresponding private key locally until
|
|
// we receive the message.
|
|
// But that message might never arrive leaving us stuck with duff
|
|
// private keys clogging up our local storage.
|
|
// So we need some kind of enginering compromise to balance all of
|
|
// these factors.
|
|
|
|
// Check how many keys we can store in the Account object.
|
|
const maxOneTimeKeys = crypto._olmDevice.maxNumberOfOneTimeKeys();
|
|
// Try to keep at most half that number on the server. This leaves the
|
|
// rest of the slots free to hold keys that have been claimed from the
|
|
// server but we haven't recevied a message for.
|
|
// If we run out of slots when generating new keys then olm will
|
|
// discard the oldest private keys first. This will eventually clean
|
|
// out stale private keys that won't receive a message.
|
|
const keyLimit = Math.floor(maxOneTimeKeys / 2);
|
|
|
|
function uploadLoop(keyCount) {
|
|
if (keyLimit <= keyCount) {
|
|
// If we don't need to generate any more keys then we are done.
|
|
return Promise.resolve();
|
|
}
|
|
|
|
const keysThisLoop = Math.min(keyLimit - keyCount, maxKeysPerCycle);
|
|
|
|
// Ask olm to generate new one time keys, then upload them to synapse.
|
|
return crypto._olmDevice.generateOneTimeKeys(keysThisLoop).then(() => {
|
|
return _uploadOneTimeKeys(crypto);
|
|
}).then((res) => {
|
|
if (res.one_time_key_counts && res.one_time_key_counts.signed_curve25519) {
|
|
// if the response contains a more up to date value use this
|
|
// for the next loop
|
|
return uploadLoop(res.one_time_key_counts.signed_curve25519);
|
|
} else {
|
|
throw new Error("response for uploading keys does not contain "
|
|
+ "one_time_key_counts.signed_curve25519");
|
|
}
|
|
});
|
|
}
|
|
|
|
crypto._oneTimeKeyCheckInProgress = true;
|
|
Promise.resolve().then(() => {
|
|
if (crypto._oneTimeKeyCount !== undefined) {
|
|
// We already have the current one_time_key count from a /sync response.
|
|
// Use this value instead of asking the server for the current key count.
|
|
return Promise.resolve(crypto._oneTimeKeyCount);
|
|
}
|
|
// ask the server how many keys we have
|
|
return crypto._baseApis.uploadKeysRequest({}, {
|
|
device_id: crypto._deviceId,
|
|
}).then((res) => {
|
|
return res.one_time_key_counts.signed_curve25519 || 0;
|
|
});
|
|
}).then((keyCount) => {
|
|
// Start the uploadLoop with the current keyCount. The function checks if
|
|
// we need to upload new keys or not.
|
|
// If there are too many keys on the server then we don't need to
|
|
// create any more keys.
|
|
return uploadLoop(keyCount);
|
|
}).catch((e) => {
|
|
console.error("Error uploading one-time keys", e.stack || e);
|
|
}).finally(() => {
|
|
// reset _oneTimeKeyCount to prevent start uploading based on old data.
|
|
// it will be set again on the next /sync-response
|
|
crypto._oneTimeKeyCount = undefined;
|
|
crypto._oneTimeKeyCheckInProgress = false;
|
|
}).done();
|
|
}
|
|
|
|
// returns a promise which resolves to the response
|
|
async function _uploadOneTimeKeys(crypto) {
|
|
const oneTimeKeys = await crypto._olmDevice.getOneTimeKeys();
|
|
const oneTimeJson = {};
|
|
|
|
const promises = [];
|
|
|
|
for (const keyId in oneTimeKeys.curve25519) {
|
|
if (oneTimeKeys.curve25519.hasOwnProperty(keyId)) {
|
|
const k = {
|
|
key: oneTimeKeys.curve25519[keyId],
|
|
};
|
|
oneTimeJson["signed_curve25519:" + keyId] = k;
|
|
promises.push(crypto._signObject(k));
|
|
}
|
|
}
|
|
|
|
await Promise.all(promises);
|
|
|
|
const res = await crypto._baseApis.uploadKeysRequest({
|
|
one_time_keys: oneTimeJson,
|
|
}, {
|
|
// for now, we set the device id explicitly, as we may not be using the
|
|
// same one as used in login.
|
|
device_id: crypto._deviceId,
|
|
});
|
|
|
|
await crypto._olmDevice.markKeysAsPublished();
|
|
return res;
|
|
}
|
|
|
|
/**
|
|
* Download the keys for a list of users and stores the keys in the session
|
|
* store.
|
|
* @param {Array} userIds The users to fetch.
|
|
* @param {bool} forceDownload Always download the keys even if cached.
|
|
*
|
|
* @return {Promise} A promise which resolves to a map userId->deviceId->{@link
|
|
* module:crypto/deviceinfo|DeviceInfo}.
|
|
*/
|
|
Crypto.prototype.downloadKeys = function(userIds, forceDownload) {
|
|
return this._deviceList.downloadKeys(userIds, forceDownload);
|
|
};
|
|
|
|
/**
|
|
* Get the stored device keys for a user id
|
|
*
|
|
* @param {string} userId the user to list keys for.
|
|
*
|
|
* @return {module:crypto/deviceinfo[]|null} list of devices, or null if we haven't
|
|
* managed to get a list of devices for this user yet.
|
|
*/
|
|
Crypto.prototype.getStoredDevicesForUser = function(userId) {
|
|
return this._deviceList.getStoredDevicesForUser(userId);
|
|
};
|
|
|
|
/**
|
|
* Get the stored keys for a single device
|
|
*
|
|
* @param {string} userId
|
|
* @param {string} deviceId
|
|
*
|
|
* @return {module:crypto/deviceinfo?} device, or undefined
|
|
* if we don't know about this device
|
|
*/
|
|
Crypto.prototype.getStoredDevice = function(userId, deviceId) {
|
|
return this._deviceList.getStoredDevice(userId, deviceId);
|
|
};
|
|
|
|
/**
|
|
* Update the blocked/verified state of the given device
|
|
*
|
|
* @param {string} userId owner of the device
|
|
* @param {string} deviceId unique identifier for the device
|
|
*
|
|
* @param {?boolean} verified whether to mark the device as verified. Null to
|
|
* leave unchanged.
|
|
*
|
|
* @param {?boolean} blocked whether to mark the device as blocked. Null to
|
|
* leave unchanged.
|
|
*
|
|
* @param {?boolean} known whether to mark that the user has been made aware of
|
|
* the existence of this device. Null to leave unchanged
|
|
*
|
|
* @return {Promise<module:crypto/deviceinfo>} updated DeviceInfo
|
|
*/
|
|
Crypto.prototype.setDeviceVerification = async function(
|
|
userId, deviceId, verified, blocked, known,
|
|
) {
|
|
const devices = this._deviceList.getRawStoredDevicesForUser(userId);
|
|
if (!devices || !devices[deviceId]) {
|
|
throw new Error("Unknown device " + userId + ":" + deviceId);
|
|
}
|
|
|
|
const dev = devices[deviceId];
|
|
let verificationStatus = dev.verified;
|
|
|
|
if (verified) {
|
|
verificationStatus = DeviceVerification.VERIFIED;
|
|
} else if (verified !== null && verificationStatus == DeviceVerification.VERIFIED) {
|
|
verificationStatus = DeviceVerification.UNVERIFIED;
|
|
}
|
|
|
|
if (blocked) {
|
|
verificationStatus = DeviceVerification.BLOCKED;
|
|
} else if (blocked !== null && verificationStatus == DeviceVerification.BLOCKED) {
|
|
verificationStatus = DeviceVerification.UNVERIFIED;
|
|
}
|
|
|
|
let knownStatus = dev.known;
|
|
if (known !== null && known !== undefined) {
|
|
knownStatus = known;
|
|
}
|
|
|
|
if (dev.verified !== verificationStatus || dev.known !== knownStatus) {
|
|
dev.verified = verificationStatus;
|
|
dev.known = knownStatus;
|
|
this._deviceList.storeDevicesForUser(userId, devices);
|
|
this._deviceList.saveIfDirty();
|
|
}
|
|
return DeviceInfo.fromStorage(dev, deviceId);
|
|
};
|
|
|
|
|
|
/**
|
|
* Get information on the active olm sessions with a user
|
|
* <p>
|
|
* Returns a map from device id to an object with keys 'deviceIdKey' (the
|
|
* device's curve25519 identity key) and 'sessions' (an array of objects in the
|
|
* same format as that returned by
|
|
* {@link module:crypto/OlmDevice#getSessionInfoForDevice}).
|
|
* <p>
|
|
* This method is provided for debugging purposes.
|
|
*
|
|
* @param {string} userId id of user to inspect
|
|
*
|
|
* @return {Promise<Object.<string, {deviceIdKey: string, sessions: object[]}>>}
|
|
*/
|
|
Crypto.prototype.getOlmSessionsForUser = async function(userId) {
|
|
const devices = this.getStoredDevicesForUser(userId) || [];
|
|
const result = {};
|
|
for (let j = 0; j < devices.length; ++j) {
|
|
const device = devices[j];
|
|
const deviceKey = device.getIdentityKey();
|
|
const sessions = await this._olmDevice.getSessionInfoForDevice(deviceKey);
|
|
|
|
result[device.deviceId] = {
|
|
deviceIdKey: deviceKey,
|
|
sessions: sessions,
|
|
};
|
|
}
|
|
return result;
|
|
};
|
|
|
|
|
|
/**
|
|
* Get the device which sent an event
|
|
*
|
|
* @param {module:models/event.MatrixEvent} event event to be checked
|
|
*
|
|
* @return {module:crypto/deviceinfo?}
|
|
*/
|
|
Crypto.prototype.getEventSenderDeviceInfo = function(event) {
|
|
const senderKey = event.getSenderKey();
|
|
const algorithm = event.getWireContent().algorithm;
|
|
|
|
if (!senderKey || !algorithm) {
|
|
return null;
|
|
}
|
|
|
|
const forwardingChain = event.getForwardingCurve25519KeyChain();
|
|
if (forwardingChain.length > 0) {
|
|
// we got this event from somewhere else
|
|
// TODO: check if we can trust the forwarders.
|
|
return null;
|
|
}
|
|
|
|
// senderKey is the Curve25519 identity key of the device which the event
|
|
// was sent from. In the case of Megolm, it's actually the Curve25519
|
|
// identity key of the device which set up the Megolm session.
|
|
|
|
const device = this._deviceList.getDeviceByIdentityKey(
|
|
event.getSender(), algorithm, senderKey,
|
|
);
|
|
|
|
if (device === null) {
|
|
// we haven't downloaded the details of this device yet.
|
|
return null;
|
|
}
|
|
|
|
// so far so good, but now we need to check that the sender of this event
|
|
// hadn't advertised someone else's Curve25519 key as their own. We do that
|
|
// by checking the Ed25519 claimed by the event (or, in the case of megolm,
|
|
// the event which set up the megolm session), to check that it matches the
|
|
// fingerprint of the purported sending device.
|
|
//
|
|
// (see https://github.com/vector-im/vector-web/issues/2215)
|
|
|
|
const claimedKey = event.getClaimedEd25519Key();
|
|
if (!claimedKey) {
|
|
console.warn("Event " + event.getId() + " claims no ed25519 key: " +
|
|
"cannot verify sending device");
|
|
return null;
|
|
}
|
|
|
|
if (claimedKey !== device.getFingerprint()) {
|
|
console.warn(
|
|
"Event " + event.getId() + " claims ed25519 key " + claimedKey +
|
|
"but sender device has key " + device.getFingerprint());
|
|
return null;
|
|
}
|
|
|
|
return device;
|
|
};
|
|
|
|
|
|
/**
|
|
* Configure a room to use encryption (ie, save a flag in the sessionstore).
|
|
*
|
|
* @param {string} roomId The room ID to enable encryption in.
|
|
*
|
|
* @param {object} config The encryption config for the room.
|
|
*
|
|
* @param {boolean=} inhibitDeviceQuery true to suppress device list query for
|
|
* users in the room (for now)
|
|
*/
|
|
Crypto.prototype.setRoomEncryption = async function(roomId, config, inhibitDeviceQuery) {
|
|
// if we already have encryption in this room, we should ignore this event
|
|
// (for now at least. maybe we should alert the user somehow?)
|
|
const existingConfig = this._sessionStore.getEndToEndRoom(roomId);
|
|
if (existingConfig) {
|
|
if (JSON.stringify(existingConfig) != JSON.stringify(config)) {
|
|
console.error("Ignoring m.room.encryption event which requests " +
|
|
"a change of config in " + roomId);
|
|
return;
|
|
}
|
|
}
|
|
|
|
const AlgClass = algorithms.ENCRYPTION_CLASSES[config.algorithm];
|
|
if (!AlgClass) {
|
|
throw new Error("Unable to encrypt with " + config.algorithm);
|
|
}
|
|
|
|
this._sessionStore.storeEndToEndRoom(roomId, config);
|
|
|
|
const alg = new AlgClass({
|
|
userId: this._userId,
|
|
deviceId: this._deviceId,
|
|
crypto: this,
|
|
olmDevice: this._olmDevice,
|
|
baseApis: this._baseApis,
|
|
roomId: roomId,
|
|
config: config,
|
|
});
|
|
this._roomEncryptors[roomId] = alg;
|
|
|
|
// make sure we are tracking the device lists for all users in this room.
|
|
console.log("Enabling encryption in " + roomId + "; " +
|
|
"starting to track device lists for all users therein");
|
|
const room = this._clientStore.getRoom(roomId);
|
|
if (!room) {
|
|
throw new Error(`Unable to enable encryption in unknown room ${roomId}`);
|
|
}
|
|
|
|
const members = room.getJoinedMembers();
|
|
members.forEach((m) => {
|
|
this._deviceList.startTrackingDeviceList(m.userId);
|
|
});
|
|
if (!inhibitDeviceQuery) {
|
|
this._deviceList.refreshOutdatedDeviceLists();
|
|
}
|
|
};
|
|
|
|
|
|
/**
|
|
* @typedef {Object} module:crypto~OlmSessionResult
|
|
* @property {module:crypto/deviceinfo} device device info
|
|
* @property {string?} sessionId base64 olm session id; null if no session
|
|
* could be established
|
|
*/
|
|
|
|
/**
|
|
* Try to make sure we have established olm sessions for all known devices for
|
|
* the given users.
|
|
*
|
|
* @param {string[]} users list of user ids
|
|
*
|
|
* @return {module:client.Promise} resolves once the sessions are complete, to
|
|
* an Object mapping from userId to deviceId to
|
|
* {@link module:crypto~OlmSessionResult}
|
|
*/
|
|
Crypto.prototype.ensureOlmSessionsForUsers = function(users) {
|
|
const devicesByUser = {};
|
|
|
|
for (let i = 0; i < users.length; ++i) {
|
|
const userId = users[i];
|
|
devicesByUser[userId] = [];
|
|
|
|
const devices = this.getStoredDevicesForUser(userId) || [];
|
|
for (let j = 0; j < devices.length; ++j) {
|
|
const deviceInfo = devices[j];
|
|
|
|
const key = deviceInfo.getIdentityKey();
|
|
if (key == this._olmDevice.deviceCurve25519Key) {
|
|
// don't bother setting up session to ourself
|
|
continue;
|
|
}
|
|
if (deviceInfo.verified == DeviceVerification.BLOCKED) {
|
|
// don't bother setting up sessions with blocked users
|
|
continue;
|
|
}
|
|
|
|
devicesByUser[userId].push(deviceInfo);
|
|
}
|
|
}
|
|
|
|
return olmlib.ensureOlmSessionsForDevices(
|
|
this._olmDevice, this._baseApis, devicesByUser,
|
|
);
|
|
};
|
|
|
|
/**
|
|
* Whether encryption is enabled for a room.
|
|
* @param {string} roomId the room id to query.
|
|
* @return {bool} whether encryption is enabled.
|
|
*/
|
|
Crypto.prototype.isRoomEncrypted = function(roomId) {
|
|
return Boolean(this._roomEncryptors[roomId]);
|
|
};
|
|
|
|
|
|
/**
|
|
* Get a list containing all of the room keys
|
|
*
|
|
* @return {module:crypto/OlmDevice.MegolmSessionData[]} a list of session export objects
|
|
*/
|
|
Crypto.prototype.exportRoomKeys = async function() {
|
|
const exportedSessions = [];
|
|
await this._cryptoStore.doTxn(
|
|
'readonly', [IndexedDBCryptoStore.STORE_INBOUND_GROUP_SESSIONS], (txn) => {
|
|
this._cryptoStore.getAllEndToEndInboundGroupSessions(txn, (s) => {
|
|
if (s === null) return;
|
|
|
|
const sess = this._olmDevice.exportInboundGroupSession(
|
|
s.senderKey, s.sessionId, s.sessionData,
|
|
);
|
|
sess.algorithm = olmlib.MEGOLM_ALGORITHM;
|
|
exportedSessions.push(sess);
|
|
});
|
|
},
|
|
);
|
|
|
|
return exportedSessions;
|
|
};
|
|
|
|
/**
|
|
* Import a list of room keys previously exported by exportRoomKeys
|
|
*
|
|
* @param {Object[]} keys a list of session export objects
|
|
* @return {module:client.Promise} a promise which resolves once the keys have been imported
|
|
*/
|
|
Crypto.prototype.importRoomKeys = function(keys) {
|
|
return Promise.map(
|
|
keys, (key) => {
|
|
if (!key.room_id || !key.algorithm) {
|
|
console.warn("ignoring room key entry with missing fields", key);
|
|
return null;
|
|
}
|
|
|
|
const alg = this._getRoomDecryptor(key.room_id, key.algorithm);
|
|
return alg.importRoomKey(key);
|
|
},
|
|
);
|
|
};
|
|
|
|
/**
|
|
* Encrypt an event according to the configuration of the room.
|
|
*
|
|
* @param {module:models/event.MatrixEvent} event event to be sent
|
|
*
|
|
* @param {module:models/room} room destination room.
|
|
*
|
|
* @return {module:client.Promise?} Promise which resolves when the event has been
|
|
* encrypted, or null if nothing was needed
|
|
*/
|
|
Crypto.prototype.encryptEvent = function(event, room) {
|
|
if (!room) {
|
|
throw new Error("Cannot send encrypted messages in unknown rooms");
|
|
}
|
|
|
|
const roomId = event.getRoomId();
|
|
|
|
const alg = this._roomEncryptors[roomId];
|
|
if (!alg) {
|
|
// MatrixClient has already checked that this room should be encrypted,
|
|
// so this is an unexpected situation.
|
|
throw new Error(
|
|
"Room was previously configured to use encryption, but is " +
|
|
"no longer. Perhaps the homeserver is hiding the " +
|
|
"configuration event.",
|
|
);
|
|
}
|
|
|
|
return alg.encryptMessage(
|
|
room, event.getType(), event.getContent(),
|
|
).then((encryptedContent) => {
|
|
event.makeEncrypted(
|
|
"m.room.encrypted",
|
|
encryptedContent,
|
|
this._olmDevice.deviceCurve25519Key,
|
|
this._olmDevice.deviceEd25519Key,
|
|
);
|
|
});
|
|
};
|
|
|
|
/**
|
|
* Decrypt a received event
|
|
*
|
|
* @param {MatrixEvent} event
|
|
*
|
|
* @return {Promise<module:crypto~EventDecryptionResult>} resolves once we have
|
|
* finished decrypting. Rejects with an `algorithms.DecryptionError` if there
|
|
* is a problem decrypting the event.
|
|
*/
|
|
Crypto.prototype.decryptEvent = function(event) {
|
|
if (event.isRedacted()) {
|
|
return Promise.resolve({
|
|
clearEvent: {
|
|
room_id: event.getRoomId(),
|
|
type: "m.room.message",
|
|
content: {},
|
|
},
|
|
});
|
|
}
|
|
const content = event.getWireContent();
|
|
const alg = this._getRoomDecryptor(event.getRoomId(), content.algorithm);
|
|
return alg.decryptEvent(event);
|
|
};
|
|
|
|
/**
|
|
* Handle the notification from /sync or /keys/changes that device lists have
|
|
* been changed.
|
|
*
|
|
* @param {Object} syncData Object containing sync tokens associated with this sync
|
|
* @param {Object} syncDeviceLists device_lists field from /sync, or response from
|
|
* /keys/changes
|
|
*/
|
|
Crypto.prototype.handleDeviceListChanges = async function(syncData, syncDeviceLists) {
|
|
// No point processing device list changes for initial syncs: they'd be meaningless
|
|
// since the server doesn't know what point we were were at previously. We'll either
|
|
// get the complete list of changes for the interval or invalidate everything in
|
|
// onSyncComplete
|
|
if (!syncData.oldSyncToken) return;
|
|
|
|
if (syncData.oldSyncToken === this._deviceList.getSyncToken()) {
|
|
// the point the db is at matches where the sync started from, so
|
|
// we can safely write the changes
|
|
this._evalDeviceListChanges(syncDeviceLists);
|
|
} else {
|
|
// the db is at a different point to where this sync started from, so
|
|
// additionally fetch the changes between where the db is and where the
|
|
// sync started
|
|
console.log(
|
|
"Device list sync gap detected - fetching key changes between " +
|
|
this._deviceList.getSyncToken() + " and " + syncData.oldSyncToken,
|
|
);
|
|
const gapDeviceLists = await this._baseApis.getKeyChanges(
|
|
this._deviceList.getSyncToken(), syncData.oldSyncToken,
|
|
);
|
|
this._evalDeviceListChanges(gapDeviceLists);
|
|
this._evalDeviceListChanges(syncDeviceLists);
|
|
}
|
|
};
|
|
|
|
/**
|
|
* Send a request for some room keys, if we have not already done so
|
|
*
|
|
* @param {module:crypto~RoomKeyRequestBody} requestBody
|
|
* @param {Array<{userId: string, deviceId: string}>} recipients
|
|
*/
|
|
Crypto.prototype.requestRoomKey = function(requestBody, recipients) {
|
|
this._outgoingRoomKeyRequestManager.sendRoomKeyRequest(
|
|
requestBody, recipients,
|
|
).catch((e) => {
|
|
// this normally means we couldn't talk to the store
|
|
console.error(
|
|
'Error requesting key for event', e,
|
|
);
|
|
}).done();
|
|
};
|
|
|
|
/**
|
|
* Cancel any earlier room key request
|
|
*
|
|
* @param {module:crypto~RoomKeyRequestBody} requestBody
|
|
* parameters to match for cancellation
|
|
*/
|
|
Crypto.prototype.cancelRoomKeyRequest = function(requestBody) {
|
|
this._outgoingRoomKeyRequestManager.cancelRoomKeyRequest(requestBody)
|
|
.catch((e) => {
|
|
console.warn("Error clearing pending room key requests", e);
|
|
}).done();
|
|
};
|
|
|
|
/**
|
|
* handle an m.room.encryption event
|
|
*
|
|
* @param {module:models/event.MatrixEvent} event encryption event
|
|
*/
|
|
Crypto.prototype.onCryptoEvent = async function(event) {
|
|
const roomId = event.getRoomId();
|
|
const content = event.getContent();
|
|
|
|
try {
|
|
// inhibit the device list refresh for now - it will happen once we've
|
|
// finished processing the sync, in onSyncCompleted.
|
|
await this.setRoomEncryption(roomId, content, true);
|
|
} catch (e) {
|
|
console.error("Error configuring encryption in room " + roomId +
|
|
":", e);
|
|
}
|
|
};
|
|
|
|
/**
|
|
* handle the completion of a /sync
|
|
*
|
|
* This is called after the processing of each successful /sync response.
|
|
* It is an opportunity to do a batch process on the information received.
|
|
*
|
|
* @param {Object} syncData the data from the 'MatrixClient.sync' event
|
|
*/
|
|
Crypto.prototype.onSyncCompleted = async function(syncData) {
|
|
const nextSyncToken = syncData.nextSyncToken;
|
|
|
|
if (!syncData.oldSyncToken) {
|
|
// If we have a stored device sync token, we could request the complete
|
|
// list of device changes from the server here to get our device list up
|
|
// to date. This case should be relatively rare though (only when you hit
|
|
// 'clear cache and reload' in practice) so we just invalidate everything.
|
|
console.log("invalidating all device list caches after inital sync");
|
|
this._deviceList.invalidateAllDeviceLists();
|
|
}
|
|
this._deviceList.setSyncToken(syncData.nextSyncToken);
|
|
this._deviceList.saveIfDirty();
|
|
|
|
// catch up on any new devices we got told about during the sync.
|
|
this._deviceList.lastKnownSyncToken = nextSyncToken;
|
|
this._deviceList.refreshOutdatedDeviceLists();
|
|
|
|
// we don't start uploading one-time keys until we've caught up with
|
|
// to-device messages, to help us avoid throwing away one-time-keys that we
|
|
// are about to receive messages for
|
|
// (https://github.com/vector-im/riot-web/issues/2782).
|
|
if (!syncData.catchingUp) {
|
|
_maybeUploadOneTimeKeys(this);
|
|
this._processReceivedRoomKeyRequests();
|
|
}
|
|
};
|
|
|
|
/**
|
|
* Trigger the appropriate invalidations and removes for a given
|
|
* device list
|
|
*
|
|
* @param {Object} deviceLists device_lists field from /sync, or response from
|
|
* /keys/changes
|
|
*/
|
|
Crypto.prototype._evalDeviceListChanges = async function(deviceLists) {
|
|
if (deviceLists.changed && Array.isArray(deviceLists.changed)) {
|
|
deviceLists.changed.forEach((u) => {
|
|
this._deviceList.invalidateUserDeviceList(u);
|
|
});
|
|
}
|
|
|
|
if (deviceLists.left && Array.isArray(deviceLists.left)) {
|
|
deviceLists.left.forEach((u) => {
|
|
this._deviceList.stopTrackingDeviceList(u);
|
|
});
|
|
}
|
|
};
|
|
|
|
/**
|
|
* Get a list of the e2e-enabled rooms we are members of
|
|
*
|
|
* @returns {module:models.Room[]}
|
|
*/
|
|
Crypto.prototype._getE2eRooms = function() {
|
|
return this._clientStore.getRooms().filter((room) => {
|
|
// check for rooms with encryption enabled
|
|
const alg = this._roomEncryptors[room.roomId];
|
|
if (!alg) {
|
|
return false;
|
|
}
|
|
|
|
// ignore any rooms which we have left
|
|
const me = room.getMember(this._userId);
|
|
if (!me || (
|
|
me.membership !== "join" && me.membership !== "invite"
|
|
)) {
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
});
|
|
};
|
|
|
|
|
|
Crypto.prototype._onToDeviceEvent = function(event) {
|
|
try {
|
|
if (event.getType() == "m.room_key"
|
|
|| event.getType() == "m.forwarded_room_key") {
|
|
this._onRoomKeyEvent(event);
|
|
} else if (event.getType() == "m.room_key_request") {
|
|
this._onRoomKeyRequestEvent(event);
|
|
} else if (event.isBeingDecrypted()) {
|
|
// once the event has been decrypted, try again
|
|
event.once('Event.decrypted', (ev) => {
|
|
this._onToDeviceEvent(ev);
|
|
});
|
|
}
|
|
} catch (e) {
|
|
console.error("Error handling toDeviceEvent:", e);
|
|
}
|
|
};
|
|
|
|
/**
|
|
* Handle a key event
|
|
*
|
|
* @private
|
|
* @param {module:models/event.MatrixEvent} event key event
|
|
*/
|
|
Crypto.prototype._onRoomKeyEvent = function(event) {
|
|
const content = event.getContent();
|
|
|
|
if (!content.room_id || !content.algorithm) {
|
|
console.error("key event is missing fields");
|
|
return;
|
|
}
|
|
|
|
const alg = this._getRoomDecryptor(content.room_id, content.algorithm);
|
|
alg.onRoomKeyEvent(event);
|
|
};
|
|
|
|
/**
|
|
* Handle a change in the membership state of a member of a room
|
|
*
|
|
* @private
|
|
* @param {module:models/event.MatrixEvent} event event causing the change
|
|
* @param {module:models/room-member} member user whose membership changed
|
|
* @param {string=} oldMembership previous membership
|
|
*/
|
|
Crypto.prototype._onRoomMembership = function(event, member, oldMembership) {
|
|
// this event handler is registered on the *client* (as opposed to the room
|
|
// member itself), which means it is only called on changes to the *live*
|
|
// membership state (ie, it is not called when we back-paginate, nor when
|
|
// we load the state in the initialsync).
|
|
//
|
|
// Further, it is automatically registered and called when new members
|
|
// arrive in the room.
|
|
|
|
const roomId = member.roomId;
|
|
|
|
const alg = this._roomEncryptors[roomId];
|
|
if (!alg) {
|
|
// not encrypting in this room
|
|
return;
|
|
}
|
|
|
|
if (member.membership == 'join') {
|
|
console.log('Join event for ' + member.userId + ' in ' + roomId);
|
|
// make sure we are tracking the deviceList for this user
|
|
this._deviceList.startTrackingDeviceList(member.userId);
|
|
}
|
|
|
|
alg.onRoomMembership(event, member, oldMembership);
|
|
};
|
|
|
|
|
|
/**
|
|
* Called when we get an m.room_key_request event.
|
|
*
|
|
* @private
|
|
* @param {module:models/event.MatrixEvent} event key request event
|
|
*/
|
|
Crypto.prototype._onRoomKeyRequestEvent = function(event) {
|
|
const content = event.getContent();
|
|
if (content.action === "request") {
|
|
// Queue it up for now, because they tend to arrive before the room state
|
|
// events at initial sync, and we want to see if we know anything about the
|
|
// room before passing them on to the app.
|
|
const req = new IncomingRoomKeyRequest(event);
|
|
this._receivedRoomKeyRequests.push(req);
|
|
} else if (content.action === "request_cancellation") {
|
|
const req = new IncomingRoomKeyRequestCancellation(event);
|
|
this._receivedRoomKeyRequestCancellations.push(req);
|
|
}
|
|
};
|
|
|
|
/**
|
|
* Process any m.room_key_request events which were queued up during the
|
|
* current sync.
|
|
*
|
|
* @private
|
|
*/
|
|
Crypto.prototype._processReceivedRoomKeyRequests = async function() {
|
|
if (this._processingRoomKeyRequests) {
|
|
// we're still processing last time's requests; keep queuing new ones
|
|
// up for now.
|
|
return;
|
|
}
|
|
this._processingRoomKeyRequests = true;
|
|
|
|
try {
|
|
// we need to grab and clear the queues in the synchronous bit of this method,
|
|
// so that we don't end up racing with the next /sync.
|
|
const requests = this._receivedRoomKeyRequests;
|
|
this._receivedRoomKeyRequests = [];
|
|
const cancellations = this._receivedRoomKeyRequestCancellations;
|
|
this._receivedRoomKeyRequestCancellations = [];
|
|
|
|
// Process all of the requests, *then* all of the cancellations.
|
|
//
|
|
// This makes sure that if we get a request and its cancellation in the
|
|
// same /sync result, then we process the request before the
|
|
// cancellation (and end up with a cancelled request), rather than the
|
|
// cancellation before the request (and end up with an outstanding
|
|
// request which should have been cancelled.)
|
|
await Promise.map(
|
|
requests, (req) =>
|
|
this._processReceivedRoomKeyRequest(req),
|
|
);
|
|
await Promise.map(
|
|
cancellations, (cancellation) =>
|
|
this._processReceivedRoomKeyRequestCancellation(cancellation),
|
|
);
|
|
} catch (e) {
|
|
console.error(`Error processing room key requsts: ${e}`);
|
|
} finally {
|
|
this._processingRoomKeyRequests = false;
|
|
}
|
|
};
|
|
|
|
/**
|
|
* Helper for processReceivedRoomKeyRequests
|
|
*
|
|
* @param {IncomingRoomKeyRequest} req
|
|
*/
|
|
Crypto.prototype._processReceivedRoomKeyRequest = async function(req) {
|
|
const userId = req.userId;
|
|
const deviceId = req.deviceId;
|
|
|
|
const body = req.requestBody;
|
|
const roomId = body.room_id;
|
|
const alg = body.algorithm;
|
|
|
|
console.log(`m.room_key_request from ${userId}:${deviceId}` +
|
|
` for ${roomId} / ${body.session_id} (id ${req.requestId})`);
|
|
|
|
if (userId !== this._userId) {
|
|
// TODO: determine if we sent this device the keys already: in
|
|
// which case we can do so again.
|
|
console.log("Ignoring room key request from other user for now");
|
|
return;
|
|
}
|
|
|
|
// todo: should we queue up requests we don't yet have keys for,
|
|
// in case they turn up later?
|
|
|
|
// if we don't have a decryptor for this room/alg, we don't have
|
|
// the keys for the requested events, and can drop the requests.
|
|
if (!this._roomDecryptors[roomId]) {
|
|
console.log(`room key request for unencrypted room ${roomId}`);
|
|
return;
|
|
}
|
|
|
|
const decryptor = this._roomDecryptors[roomId][alg];
|
|
if (!decryptor) {
|
|
console.log(`room key request for unknown alg ${alg} in room ${roomId}`);
|
|
return;
|
|
}
|
|
|
|
if (!await decryptor.hasKeysForKeyRequest(req)) {
|
|
console.log(
|
|
`room key request for unknown session ${roomId} / ` +
|
|
body.session_id,
|
|
);
|
|
return;
|
|
}
|
|
|
|
req.share = () => {
|
|
decryptor.shareKeysWithDevice(req);
|
|
};
|
|
|
|
// if the device is is verified already, share the keys
|
|
const device = this._deviceList.getStoredDevice(userId, deviceId);
|
|
if (device && device.isVerified()) {
|
|
console.log('device is already verified: sharing keys');
|
|
req.share();
|
|
return;
|
|
}
|
|
|
|
this.emit("crypto.roomKeyRequest", req);
|
|
};
|
|
|
|
|
|
/**
|
|
* Helper for processReceivedRoomKeyRequests
|
|
*
|
|
* @param {IncomingRoomKeyRequestCancellation} cancellation
|
|
*/
|
|
Crypto.prototype._processReceivedRoomKeyRequestCancellation = async function(
|
|
cancellation,
|
|
) {
|
|
console.log(
|
|
`m.room_key_request cancellation for ${cancellation.userId}:` +
|
|
`${cancellation.deviceId} (id ${cancellation.requestId})`,
|
|
);
|
|
|
|
// we should probably only notify the app of cancellations we told it
|
|
// about, but we don't currently have a record of that, so we just pass
|
|
// everything through.
|
|
this.emit("crypto.roomKeyRequestCancellation", cancellation);
|
|
};
|
|
|
|
/**
|
|
* Get a decryptor for a given room and algorithm.
|
|
*
|
|
* If we already have a decryptor for the given room and algorithm, return
|
|
* it. Otherwise try to instantiate it.
|
|
*
|
|
* @private
|
|
*
|
|
* @param {string?} roomId room id for decryptor. If undefined, a temporary
|
|
* decryptor is instantiated.
|
|
*
|
|
* @param {string} algorithm crypto algorithm
|
|
*
|
|
* @return {module:crypto.algorithms.base.DecryptionAlgorithm}
|
|
*
|
|
* @raises {module:crypto.algorithms.DecryptionError} if the algorithm is
|
|
* unknown
|
|
*/
|
|
Crypto.prototype._getRoomDecryptor = function(roomId, algorithm) {
|
|
let decryptors;
|
|
let alg;
|
|
|
|
roomId = roomId || null;
|
|
if (roomId) {
|
|
decryptors = this._roomDecryptors[roomId];
|
|
if (!decryptors) {
|
|
this._roomDecryptors[roomId] = decryptors = {};
|
|
}
|
|
|
|
alg = decryptors[algorithm];
|
|
if (alg) {
|
|
return alg;
|
|
}
|
|
}
|
|
|
|
const AlgClass = algorithms.DECRYPTION_CLASSES[algorithm];
|
|
if (!AlgClass) {
|
|
throw new algorithms.DecryptionError(
|
|
'Unknown encryption algorithm "' + algorithm + '".',
|
|
);
|
|
}
|
|
alg = new AlgClass({
|
|
userId: this._userId,
|
|
crypto: this,
|
|
olmDevice: this._olmDevice,
|
|
baseApis: this._baseApis,
|
|
roomId: roomId,
|
|
});
|
|
|
|
if (decryptors) {
|
|
decryptors[algorithm] = alg;
|
|
}
|
|
return alg;
|
|
};
|
|
|
|
|
|
/**
|
|
* sign the given object with our ed25519 key
|
|
*
|
|
* @param {Object} obj Object to which we will add a 'signatures' property
|
|
*/
|
|
Crypto.prototype._signObject = async function(obj) {
|
|
const sigs = {};
|
|
sigs[this._userId] = {};
|
|
sigs[this._userId]["ed25519:" + this._deviceId] =
|
|
await this._olmDevice.sign(anotherjson.stringify(obj));
|
|
obj.signatures = sigs;
|
|
};
|
|
|
|
|
|
/**
|
|
* The parameters of a room key request. The details of the request may
|
|
* vary with the crypto algorithm, but the management and storage layers for
|
|
* outgoing requests expect it to have 'room_id' and 'session_id' properties.
|
|
*
|
|
* @typedef {Object} RoomKeyRequestBody
|
|
*/
|
|
|
|
/**
|
|
* Represents a received m.room_key_request event
|
|
*
|
|
* @property {string} userId user requesting the key
|
|
* @property {string} deviceId device requesting the key
|
|
* @property {string} requestId unique id for the request
|
|
* @property {module:crypto~RoomKeyRequestBody} requestBody
|
|
* @property {function()} share callback which, when called, will ask
|
|
* the relevant crypto algorithm implementation to share the keys for
|
|
* this request.
|
|
*/
|
|
class IncomingRoomKeyRequest {
|
|
constructor(event) {
|
|
const content = event.getContent();
|
|
|
|
this.userId = event.getSender();
|
|
this.deviceId = content.requesting_device_id;
|
|
this.requestId = content.request_id;
|
|
this.requestBody = content.body || {};
|
|
this.share = () => {
|
|
throw new Error("don't know how to share keys for this request yet");
|
|
};
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Represents a received m.room_key_request cancellation
|
|
*
|
|
* @property {string} userId user requesting the cancellation
|
|
* @property {string} deviceId device requesting the cancellation
|
|
* @property {string} requestId unique id for the request to be cancelled
|
|
*/
|
|
class IncomingRoomKeyRequestCancellation {
|
|
constructor(event) {
|
|
const content = event.getContent();
|
|
|
|
this.userId = event.getSender();
|
|
this.deviceId = content.requesting_device_id;
|
|
this.requestId = content.request_id;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* The result of a (successful) call to decryptEvent.
|
|
*
|
|
* @typedef {Object} EventDecryptionResult
|
|
*
|
|
* @property {Object} clearEvent The plaintext payload for the event
|
|
* (typically containing <tt>type</tt> and <tt>content</tt> fields).
|
|
*
|
|
* @property {?string} senderCurve25519Key Key owned by the sender of this
|
|
* event. See {@link module:models/event.MatrixEvent#getSenderKey}.
|
|
*
|
|
* @property {?string} claimedEd25519Key ed25519 key claimed by the sender of
|
|
* this event. See
|
|
* {@link module:models/event.MatrixEvent#getClaimedEd25519Key}.
|
|
*
|
|
* @property {?Array<string>} forwardingCurve25519KeyChain list of curve25519
|
|
* keys involved in telling us about the senderCurve25519Key and
|
|
* claimedEd25519Key. See
|
|
* {@link module:models/event.MatrixEvent#getForwardingCurve25519KeyChain}.
|
|
*/
|
|
|
|
/**
|
|
* Fires when we receive a room key request
|
|
*
|
|
* @event module:client~MatrixClient#"crypto.roomKeyRequest"
|
|
* @param {module:crypto~IncomingRoomKeyRequest} req request details
|
|
*/
|
|
|
|
/**
|
|
* Fires when we receive a room key request cancellation
|
|
*
|
|
* @event module:client~MatrixClient#"crypto.roomKeyRequestCancellation"
|
|
* @param {module:crypto~IncomingRoomKeyRequestCancellation} req
|
|
*/
|
|
|
|
/**
|
|
* Fires when the app may wish to warn the user about something related
|
|
* the end-to-end crypto.
|
|
*
|
|
* Comes with a type which is one of:
|
|
* * CRYPTO_WARNING_ACCOUNT_MIGRATED: Account data has been migrated from an older
|
|
* version of the store in such a way that older clients will no longer be
|
|
* able to read it. The app may wish to warn the user against going back to
|
|
* an older version of the app.
|
|
* * CRYPTO_WARNING_OLD_VERSION_DETECTED: js-sdk has detected that an older version
|
|
* of js-sdk has been run against the same store after a migration has been
|
|
* performed. This is likely have caused unexpected behaviour in the old
|
|
* version. For example, the old version and the new version may have two
|
|
* different identity keys.
|
|
*
|
|
* @event module:client~MatrixClient#"crypto.warning"
|
|
* @param {string} type One of the strings listed above
|
|
*/
|
|
|
|
/** */
|
|
module.exports = Crypto;
|