2020-09-03 19:06:17 +05:30
|
|
|
/*
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
2020-09-04 18:58:22 +05:30
|
|
|
import {MEGOLM_ALGORITHM} from "./common.js";
|
2020-09-03 19:06:17 +05:30
|
|
|
import {groupBy} from "../../utils/groupBy.js";
|
|
|
|
import {makeTxnId} from "../common.js";
|
|
|
|
|
2020-09-03 21:20:28 +05:30
|
|
|
const ENCRYPTED_TYPE = "m.room.encrypted";
|
2020-09-03 19:06:17 +05:30
|
|
|
|
|
|
|
export class RoomEncryption {
|
2020-09-08 17:54:48 +05:30
|
|
|
constructor({room, deviceTracker, olmEncryption, megolmEncryption, megolmDecryption, encryptionParams, storage}) {
|
2020-09-03 19:06:17 +05:30
|
|
|
this._room = room;
|
|
|
|
this._deviceTracker = deviceTracker;
|
|
|
|
this._olmEncryption = olmEncryption;
|
2020-09-03 21:20:28 +05:30
|
|
|
this._megolmEncryption = megolmEncryption;
|
2020-09-04 19:57:14 +05:30
|
|
|
this._megolmDecryption = megolmDecryption;
|
2020-09-03 19:06:17 +05:30
|
|
|
// content of the m.room.encryption event
|
2020-09-03 21:20:28 +05:30
|
|
|
this._encryptionParams = encryptionParams;
|
2020-09-04 15:39:19 +05:30
|
|
|
|
|
|
|
this._megolmBackfillCache = this._megolmDecryption.createSessionCache();
|
|
|
|
this._megolmSyncCache = this._megolmDecryption.createSessionCache();
|
2020-09-04 15:40:12 +05:30
|
|
|
// not `event_id`, but an internal event id passed in to the decrypt methods
|
|
|
|
this._eventIdsByMissingSession = new Map();
|
2020-09-08 14:20:39 +05:30
|
|
|
this._senderDeviceCache = new Map();
|
2020-09-08 17:54:48 +05:30
|
|
|
this._storage = storage;
|
2020-09-04 15:39:19 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
notifyTimelineClosed() {
|
|
|
|
// empty the backfill cache when closing the timeline
|
|
|
|
this._megolmBackfillCache.dispose();
|
|
|
|
this._megolmBackfillCache = this._megolmDecryption.createSessionCache();
|
2020-09-08 14:20:39 +05:30
|
|
|
this._senderDeviceCache = new Map(); // purge the sender device cache
|
2020-09-03 19:06:17 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
async writeMemberChanges(memberChanges, txn) {
|
2020-09-08 17:53:38 +05:30
|
|
|
for (const m of memberChanges.values()) {
|
|
|
|
if (m.hasLeft) {
|
|
|
|
this._megolmEncryption.discardOutboundSession(this._room.id, txn);
|
|
|
|
break;
|
|
|
|
}
|
2020-09-08 14:39:09 +05:30
|
|
|
}
|
2020-09-03 19:06:17 +05:30
|
|
|
return await this._deviceTracker.writeMemberChanges(this._room, memberChanges, txn);
|
|
|
|
}
|
|
|
|
|
2020-09-08 14:18:11 +05:30
|
|
|
async decrypt(event, isSync, isTimelineOpen, retryData, txn) {
|
2020-09-08 20:46:01 +05:30
|
|
|
if (event.redacted_because || event.unsigned?.redacted_because) {
|
|
|
|
return;
|
|
|
|
}
|
2020-09-04 18:58:22 +05:30
|
|
|
if (event.content?.algorithm !== MEGOLM_ALGORITHM) {
|
|
|
|
throw new Error("Unsupported algorithm: " + event.content?.algorithm);
|
2020-09-04 15:40:12 +05:30
|
|
|
}
|
2020-09-04 18:58:22 +05:30
|
|
|
let sessionCache = isSync ? this._megolmSyncCache : this._megolmBackfillCache;
|
2020-09-08 14:18:11 +05:30
|
|
|
const result = await this._megolmDecryption.decrypt(
|
2020-09-04 18:58:22 +05:30
|
|
|
this._room.id, event, sessionCache, txn);
|
2020-09-08 14:18:11 +05:30
|
|
|
if (!result) {
|
2020-09-04 18:58:22 +05:30
|
|
|
this._addMissingSessionEvent(event, isSync, retryData);
|
2020-09-04 15:40:12 +05:30
|
|
|
}
|
2020-09-08 14:20:39 +05:30
|
|
|
if (result && isTimelineOpen) {
|
|
|
|
await this._verifyDecryptionResult(result, txn);
|
|
|
|
}
|
2020-09-08 14:18:11 +05:30
|
|
|
return result;
|
2020-09-04 15:39:19 +05:30
|
|
|
}
|
|
|
|
|
2020-09-08 14:20:39 +05:30
|
|
|
async _verifyDecryptionResult(result, txn) {
|
|
|
|
let device = this._senderDeviceCache.get(result.senderCurve25519Key);
|
|
|
|
if (!device) {
|
|
|
|
device = await this._deviceTracker.getDeviceByCurve25519Key(result.senderCurve25519Key, txn);
|
|
|
|
this._senderDeviceCache.set(result.senderCurve25519Key, device);
|
|
|
|
}
|
|
|
|
if (device) {
|
|
|
|
result.setDevice(device);
|
|
|
|
} else if (!this._room.isTrackingMembers) {
|
|
|
|
result.setRoomNotTrackedYet();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-04 18:58:22 +05:30
|
|
|
_addMissingSessionEvent(event, isSync, data) {
|
2020-09-04 15:40:12 +05:30
|
|
|
const senderKey = event.content?.["sender_key"];
|
|
|
|
const sessionId = event.content?.["session_id"];
|
|
|
|
const key = `${senderKey}|${sessionId}`;
|
|
|
|
let eventIds = this._eventIdsByMissingSession.get(key);
|
|
|
|
if (!eventIds) {
|
2020-09-04 18:58:22 +05:30
|
|
|
eventIds = new Map();
|
2020-09-04 15:40:12 +05:30
|
|
|
this._eventIdsByMissingSession.set(key, eventIds);
|
|
|
|
}
|
2020-09-04 18:58:22 +05:30
|
|
|
eventIds.set(event.event_id, {data, isSync});
|
2020-09-04 15:40:12 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
applyRoomKeys(roomKeys) {
|
|
|
|
// retry decryption with the new sessions
|
2020-09-04 18:58:22 +05:30
|
|
|
const retryEntries = [];
|
2020-09-04 15:40:12 +05:30
|
|
|
for (const roomKey of roomKeys) {
|
|
|
|
const key = `${roomKey.senderKey}|${roomKey.sessionId}`;
|
2020-09-04 18:58:22 +05:30
|
|
|
const entriesForSession = this._eventIdsByMissingSession.get(key);
|
|
|
|
if (entriesForSession) {
|
2020-09-04 15:40:12 +05:30
|
|
|
this._eventIdsByMissingSession.delete(key);
|
2020-09-04 18:58:22 +05:30
|
|
|
retryEntries.push(...entriesForSession.values());
|
2020-09-04 15:40:12 +05:30
|
|
|
}
|
|
|
|
}
|
2020-09-04 18:58:22 +05:30
|
|
|
return retryEntries;
|
2020-09-04 15:40:12 +05:30
|
|
|
}
|
|
|
|
|
2020-09-03 19:06:17 +05:30
|
|
|
async encrypt(type, content, hsApi) {
|
2020-09-03 21:20:28 +05:30
|
|
|
const megolmResult = await this._megolmEncryption.encrypt(this._room.id, type, content, this._encryptionParams);
|
|
|
|
// share the new megolm session if needed
|
|
|
|
if (megolmResult.roomKeyMessage) {
|
|
|
|
await this._deviceTracker.trackRoom(this._room);
|
2020-09-08 17:54:48 +05:30
|
|
|
const devices = await this._deviceTracker.devicesForTrackedRoom(this._room.id, hsApi);
|
|
|
|
await this._sendRoomKey(megolmResult.roomKeyMessage, devices, hsApi);
|
|
|
|
// if we happen to rotate the session before we have sent newly joined members the room key
|
|
|
|
// then mark those members as not needing the key anymore
|
|
|
|
const userIds = Array.from(devices.reduce((set, device) => set.add(device.userId), new Set()));
|
|
|
|
await this._clearNeedsRoomKeyFlag(userIds);
|
2020-09-03 21:20:28 +05:30
|
|
|
}
|
|
|
|
return {
|
|
|
|
type: ENCRYPTED_TYPE,
|
|
|
|
content: megolmResult.content
|
|
|
|
};
|
2020-09-03 19:06:17 +05:30
|
|
|
}
|
|
|
|
|
2020-09-08 18:08:27 +05:30
|
|
|
needsToShareKeys(memberChanges) {
|
|
|
|
for (const m of memberChanges.values()) {
|
|
|
|
if (m.member.needsRoomKey) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
async shareRoomKeyToPendingMembers(hsApi) {
|
|
|
|
// sucks to call this for all encrypted rooms on startup?
|
|
|
|
const txn = await this._storage.readTxn([this._storage.storeNames.roomMembers]);
|
|
|
|
const pendingUserIds = await txn.roomMembers.getUserIdsNeedingRoomKey(this._room.id);
|
|
|
|
return await this._shareRoomKey(pendingUserIds, hsApi);
|
|
|
|
}
|
|
|
|
|
2020-09-08 17:54:48 +05:30
|
|
|
async shareRoomKeyForMemberChanges(memberChanges, hsApi) {
|
|
|
|
const pendingUserIds = [];
|
|
|
|
for (const m of memberChanges.values()) {
|
|
|
|
if (m.member.needsRoomKey) {
|
|
|
|
pendingUserIds.push(m.userId);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return await this._shareRoomKey(pendingUserIds, hsApi);
|
|
|
|
}
|
|
|
|
|
|
|
|
async _shareRoomKey(userIds, hsApi) {
|
|
|
|
if (userIds.length === 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
const readRoomKeyTxn = await this._storage.readTxn([this._storage.storeNames.outboundGroupSessions]);
|
|
|
|
const roomKeyMessage = await this._megolmEncryption.createRoomKeyMessage(this._room.id, readRoomKeyTxn);
|
|
|
|
// no room key if we haven't created a session yet
|
|
|
|
// (or we removed it and will create a new one on the next send)
|
|
|
|
if (roomKeyMessage) {
|
|
|
|
const devices = await this._deviceTracker.devicesForRoomMembers(this._room.id, userIds, hsApi);
|
|
|
|
await this._sendRoomKey(roomKeyMessage, devices, hsApi);
|
|
|
|
const actuallySentUserIds = Array.from(devices.reduce((set, device) => set.add(device.userId), new Set()));
|
|
|
|
await this._clearNeedsRoomKeyFlag(actuallySentUserIds);
|
|
|
|
} else {
|
|
|
|
// we don't have a session yet, clear them all
|
|
|
|
await this._clearNeedsRoomKeyFlag(userIds);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
async _clearNeedsRoomKeyFlag(userIds) {
|
|
|
|
const txn = await this._storage.readWriteTxn([this._storage.storeNames.roomMembers]);
|
|
|
|
try {
|
|
|
|
await Promise.all(userIds.map(async userId => {
|
|
|
|
const memberData = await txn.roomMembers.get(this._room.id, userId);
|
|
|
|
if (memberData.needsRoomKey) {
|
|
|
|
memberData.needsRoomKey = false;
|
|
|
|
txn.roomMembers.set(memberData);
|
|
|
|
}
|
|
|
|
}));
|
|
|
|
} catch (err) {
|
|
|
|
txn.abort();
|
|
|
|
throw err;
|
|
|
|
}
|
|
|
|
await txn.complete();
|
|
|
|
}
|
|
|
|
|
|
|
|
async _sendRoomKey(roomKeyMessage, devices, hsApi) {
|
|
|
|
const messages = await this._olmEncryption.encrypt(
|
|
|
|
"m.room_key", roomKeyMessage, devices, hsApi);
|
|
|
|
await this._sendMessagesToDevices(ENCRYPTED_TYPE, messages, hsApi);
|
|
|
|
}
|
|
|
|
|
2020-09-03 19:06:17 +05:30
|
|
|
async _sendMessagesToDevices(type, messages, hsApi) {
|
|
|
|
const messagesByUser = groupBy(messages, message => message.device.userId);
|
|
|
|
const payload = {
|
|
|
|
messages: Array.from(messagesByUser.entries()).reduce((userMap, [userId, messages]) => {
|
|
|
|
userMap[userId] = messages.reduce((deviceMap, message) => {
|
|
|
|
deviceMap[message.device.deviceId] = message.content;
|
|
|
|
return deviceMap;
|
|
|
|
}, {});
|
|
|
|
return userMap;
|
|
|
|
}, {})
|
|
|
|
};
|
|
|
|
const txnId = makeTxnId();
|
|
|
|
await hsApi.sendToDevice(type, payload, txnId).response();
|
|
|
|
}
|
|
|
|
}
|