mirror of
https://github.com/vector-im/hydrogen-web.git
synced 2024-12-25 20:45:10 +01:00
273 lines
10 KiB
JavaScript
273 lines
10 KiB
JavaScript
/*
|
|
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 {groupByWithCreator} from "../../../utils/groupBy.js";
|
|
import {verifyEd25519Signature, OLM_ALGORITHM} from "./common.js";
|
|
import {createSessionEntry} from "./Session.js";
|
|
|
|
function findFirstSessionId(sessionIds) {
|
|
return sessionIds.reduce((first, sessionId) => {
|
|
if (!first || sessionId < first) {
|
|
return sessionId;
|
|
} else {
|
|
return first;
|
|
}
|
|
}, null);
|
|
}
|
|
|
|
const OTK_ALGORITHM = "signed_curve25519";
|
|
|
|
export class Encryption {
|
|
constructor({account, olm, olmUtil, userId, storage, now, pickleKey, senderKeyLock}) {
|
|
this._account = account;
|
|
this._olm = olm;
|
|
this._olmUtil = olmUtil;
|
|
this._userId = userId;
|
|
this._storage = storage;
|
|
this._now = now;
|
|
this._pickleKey = pickleKey;
|
|
this._senderKeyLock = senderKeyLock;
|
|
}
|
|
|
|
async encrypt(type, content, devices, hsApi) {
|
|
// TODO: see if we can only hold some of the locks until after the /keys/claim call (if needed)
|
|
// take a lock on all senderKeys so decryption and other calls to encrypt (should not happen)
|
|
// don't modify the sessions at the same time
|
|
const locks = await Promise.all(devices.map(device => {
|
|
return this._senderKeyLock.takeLock(device.curve25519Key);
|
|
}));
|
|
try {
|
|
const {
|
|
devicesWithoutSession,
|
|
existingEncryptionTargets,
|
|
} = await this._findExistingSessions(devices);
|
|
|
|
const timestamp = this._now();
|
|
|
|
let encryptionTargets = [];
|
|
try {
|
|
if (devicesWithoutSession.length) {
|
|
const newEncryptionTargets = await this._createNewSessions(
|
|
devicesWithoutSession, hsApi, timestamp);
|
|
encryptionTargets = encryptionTargets.concat(newEncryptionTargets);
|
|
}
|
|
await this._loadSessions(existingEncryptionTargets);
|
|
encryptionTargets = encryptionTargets.concat(existingEncryptionTargets);
|
|
const messages = encryptionTargets.map(target => {
|
|
const content = this._encryptForDevice(type, content, target);
|
|
return new EncryptedMessage(content, target.device);
|
|
});
|
|
await this._storeSessions(encryptionTargets, timestamp);
|
|
return messages;
|
|
} finally {
|
|
for (const target of encryptionTargets) {
|
|
target.dispose();
|
|
}
|
|
}
|
|
} finally {
|
|
for (const lock of locks) {
|
|
lock.release();
|
|
}
|
|
}
|
|
}
|
|
|
|
async _findExistingSessions(devices) {
|
|
const txn = this._storage.readTxn([this._storage.storeNames.olmSessions]);
|
|
const sessionIdsForDevice = await Promise.all(devices.map(async device => {
|
|
return await txn.olmSessions.getSessionIds(device.curve25519Key);
|
|
}));
|
|
const devicesWithoutSession = devices.filter((_, i) => {
|
|
const sessionIds = sessionIdsForDevice[i];
|
|
return !(sessionIds?.length);
|
|
});
|
|
|
|
const existingEncryptionTargets = devices.map((device, i) => {
|
|
const sessionIds = sessionIdsForDevice[i];
|
|
if (sessionIds?.length > 0) {
|
|
const sessionId = findFirstSessionId(sessionIds);
|
|
return EncryptionTarget.fromSessionId(device, sessionId);
|
|
}
|
|
}).filter(target => !!target);
|
|
|
|
return {devicesWithoutSession, existingEncryptionTargets};
|
|
}
|
|
|
|
_encryptForDevice(type, content, target) {
|
|
const {session, device} = target;
|
|
const message = session.encrypt(this._buildPlainTextMessageForDevice(type, content, device));
|
|
const encryptedContent = {
|
|
algorithm: OLM_ALGORITHM,
|
|
sender_key: this._account.identityKeys.curve25519,
|
|
ciphertext: {
|
|
[device.curve25519Key]: message
|
|
}
|
|
};
|
|
return encryptedContent;
|
|
}
|
|
|
|
_buildPlainTextMessageForDevice(type, content, device) {
|
|
return {
|
|
keys: {
|
|
"ed25519": this._account.identityKeys.ed25519
|
|
},
|
|
recipient_keys: {
|
|
"ed25519": device.ed25519Key
|
|
},
|
|
recipient: device.userId,
|
|
sender: this._userId,
|
|
content,
|
|
type
|
|
}
|
|
}
|
|
|
|
async _createNewSessions(devicesWithoutSession, hsApi, timestamp) {
|
|
const newEncryptionTargets = await this._claimOneTimeKeys(hsApi, devicesWithoutSession);
|
|
try {
|
|
for (const target of newEncryptionTargets) {
|
|
const {device, oneTimeKey} = target;
|
|
target.session = this._account.createOutboundOlmSession(device.curve25519Key, oneTimeKey);
|
|
}
|
|
this._storeSessions(newEncryptionTargets, timestamp);
|
|
} catch (err) {
|
|
for (const target of newEncryptionTargets) {
|
|
target.dispose();
|
|
}
|
|
}
|
|
return newEncryptionTargets;
|
|
}
|
|
|
|
async _claimOneTimeKeys(hsApi, deviceIdentities) {
|
|
// create a Map<userId, Map<deviceId, deviceIdentity>>
|
|
const devicesByUser = groupByWithCreator(deviceIdentities,
|
|
device => device.userId,
|
|
() => new Map(),
|
|
(deviceMap, device) => deviceMap.set(device.deviceId, device)
|
|
);
|
|
const oneTimeKeys = Array.from(devicesByUser.entries()).reduce((usersObj, [userId, deviceMap]) => {
|
|
usersObj[userId] = Array.from(deviceMap.values()).reduce((devicesObj, device) => {
|
|
devicesObj[device.deviceId] = OTK_ALGORITHM;
|
|
return devicesObj;
|
|
}, {});
|
|
return usersObj;
|
|
}, {});
|
|
const claimResponse = await hsApi.claimKeys({
|
|
timeout: 10000,
|
|
one_time_keys: oneTimeKeys
|
|
}).response();
|
|
// TODO: log claimResponse.failures
|
|
const userKeyMap = claimResponse?.["one_time_keys"];
|
|
return this._verifyAndCreateOTKTargets(userKeyMap, devicesByUser);
|
|
}
|
|
|
|
_verifyAndCreateOTKTargets(userKeyMap, devicesByUser) {
|
|
const verifiedEncryptionTargets = [];
|
|
for (const [userId, userSection] of Object.entries(userKeyMap)) {
|
|
for (const [deviceId, deviceSection] of Object.entries(userSection)) {
|
|
const [firstPropName, keySection] = Object.entries(deviceSection)[0];
|
|
const [keyAlgorithm] = firstPropName.split(":");
|
|
if (keyAlgorithm === OTK_ALGORITHM) {
|
|
const device = devicesByUser.get(userId)?.get(deviceId);
|
|
if (device) {
|
|
const isValidSignature = verifyEd25519Signature(
|
|
this._olmUtil, userId, deviceId, device.ed25519Key, keySection);
|
|
if (isValidSignature) {
|
|
const target = EncryptionTarget.fromOTK(device, keySection.key);
|
|
verifiedEncryptionTargets.push(target);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return verifiedEncryptionTargets;
|
|
}
|
|
|
|
async _loadSessions(encryptionTargets) {
|
|
const txn = this._storage.readTxn([this._storage.storeNames.olmSessions]);
|
|
// given we run loading in parallel, there might still be some
|
|
// storage requests that will finish later once one has failed.
|
|
// those should not allocate a session anymore.
|
|
let failed = false;
|
|
try {
|
|
await Promise.all(encryptionTargets.map(async encryptionTarget => {
|
|
const sessionEntry = await txn.olmSessions.get(
|
|
encryptionTarget.device.curve25519Key, encryptionTarget.sessionId);
|
|
if (sessionEntry && !failed) {
|
|
const olmSession = new this._olm.Session();
|
|
olmSession.unpickle(this._pickleKey, sessionEntry.session);
|
|
encryptionTarget.session = olmSession;
|
|
}
|
|
}));
|
|
} catch (err) {
|
|
failed = true;
|
|
// clean up the sessions that did load
|
|
for (const target of encryptionTargets) {
|
|
target.dispose();
|
|
}
|
|
throw err;
|
|
}
|
|
}
|
|
|
|
async _storeSessions(encryptionTargets, timestamp) {
|
|
const txn = this._storage.readWriteTxn([this._storage.storeNames.olmSessions]);
|
|
try {
|
|
for (const target of encryptionTargets) {
|
|
const sessionEntry = createSessionEntry(
|
|
target.session, target.device.curve25519Key, timestamp, this._pickleKey);
|
|
txn.olmSessions.set(sessionEntry);
|
|
}
|
|
} catch (err) {
|
|
txn.abort();
|
|
throw err;
|
|
}
|
|
await txn.complete();
|
|
}
|
|
}
|
|
|
|
// just a container needed to encrypt a message for a recipient device
|
|
// it is constructed with either a oneTimeKey
|
|
// (and later converted to a session) in case of a new session
|
|
// or an existing session
|
|
class EncryptionTarget {
|
|
constructor(device, oneTimeKey, sessionId) {
|
|
this.device = device;
|
|
this.oneTimeKey = oneTimeKey;
|
|
this.sessionId = sessionId;
|
|
// an olmSession, should probably be called olmSession
|
|
this.session = null;
|
|
}
|
|
|
|
static fromOTK(device, oneTimeKey) {
|
|
return new EncryptionTarget(device, oneTimeKey, null);
|
|
}
|
|
|
|
static fromSessionId(device, sessionId) {
|
|
return new EncryptionTarget(device, null, sessionId);
|
|
}
|
|
|
|
dispose() {
|
|
if (this.session) {
|
|
this.session.free();
|
|
}
|
|
}
|
|
}
|
|
|
|
class EncryptedMessage {
|
|
constructor(content, device) {
|
|
this.content = content;
|
|
this.device = device;
|
|
}
|
|
}
|