2022-06-01 17:48:16 +00:00
|
|
|
// Copyright 2020-2022 Signal Messenger, LLC
|
2020-10-30 20:34:04 +00:00
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2020-09-24 21:53:21 +00:00
|
|
|
import PQueue from 'p-queue';
|
2021-09-10 02:38:11 +00:00
|
|
|
import { omit } from 'lodash';
|
2020-04-13 17:37:29 +00:00
|
|
|
|
|
|
|
import EventTarget from './EventTarget';
|
2022-07-08 20:46:25 +00:00
|
|
|
import type { WebAPIType } from './WebAPI';
|
2021-09-22 00:58:03 +00:00
|
|
|
import { HTTPError } from './Errors';
|
2022-07-28 16:35:29 +00:00
|
|
|
import type { KeyPairType, PniKeyMaterialType } from './Types.d';
|
2020-04-13 17:37:29 +00:00
|
|
|
import ProvisioningCipher from './ProvisioningCipher';
|
2021-10-26 19:15:33 +00:00
|
|
|
import type { IncomingWebSocketRequest } from './WebsocketResources';
|
2021-07-28 21:37:09 +00:00
|
|
|
import createTaskWithTimeout from './TaskWithTimeout';
|
2021-07-02 19:21:24 +00:00
|
|
|
import * as Bytes from '../Bytes';
|
2021-09-27 17:31:34 +00:00
|
|
|
import { RemoveAllConfiguration } from '../types/RemoveAllConfiguration';
|
2021-12-09 19:45:21 +00:00
|
|
|
import * as Errors from '../types/errors';
|
2021-09-27 17:31:34 +00:00
|
|
|
import { senderCertificateService } from '../services/senderCertificate';
|
2021-04-16 23:13:13 +00:00
|
|
|
import {
|
|
|
|
deriveAccessKey,
|
|
|
|
generateRegistrationId,
|
|
|
|
getRandomBytes,
|
2021-09-24 00:49:05 +00:00
|
|
|
decryptDeviceName,
|
|
|
|
encryptDeviceName,
|
2021-04-16 23:13:13 +00:00
|
|
|
} from '../Crypto';
|
|
|
|
import {
|
|
|
|
generateKeyPair,
|
|
|
|
generateSignedPreKey,
|
|
|
|
generatePreKey,
|
|
|
|
} from '../Curve';
|
2021-11-30 19:33:51 +00:00
|
|
|
import { UUID, UUIDKind } from '../types/UUID';
|
2021-03-22 21:08:52 +00:00
|
|
|
import { isMoreRecentThan, isOlderThan } from '../util/timestamp';
|
2021-05-05 16:39:16 +00:00
|
|
|
import { ourProfileKeyService } from '../services/ourProfileKey';
|
2022-09-15 19:17:15 +00:00
|
|
|
import { assertDev, strictAssert } from '../util/assert';
|
2022-06-01 17:48:16 +00:00
|
|
|
import { getRegionCodeForNumber } from '../util/libphonenumberUtil';
|
2021-06-07 16:27:02 +00:00
|
|
|
import { getProvisioningUrl } from '../util/getProvisioningUrl';
|
2022-07-18 22:32:00 +00:00
|
|
|
import { isNotNil } from '../util/isNotNil';
|
2021-07-02 19:21:24 +00:00
|
|
|
import { SignalService as Proto } from '../protobuf';
|
2021-09-17 18:27:53 +00:00
|
|
|
import * as log from '../logging/log';
|
2020-04-13 17:37:29 +00:00
|
|
|
|
2021-08-03 22:26:00 +00:00
|
|
|
const DAY = 24 * 60 * 60 * 1000;
|
|
|
|
const MINIMUM_SIGNED_PREKEYS = 5;
|
|
|
|
const ARCHIVE_AGE = 30 * DAY;
|
2021-08-20 18:27:12 +00:00
|
|
|
const PREKEY_ROTATION_AGE = DAY * 1.5;
|
2021-04-16 23:13:13 +00:00
|
|
|
const PROFILE_KEY_LENGTH = 32;
|
|
|
|
const SIGNED_KEY_GEN_BATCH_SIZE = 100;
|
2020-04-13 17:37:29 +00:00
|
|
|
|
2021-09-10 02:38:11 +00:00
|
|
|
export type GeneratedKeysType = {
|
2020-04-13 17:37:29 +00:00
|
|
|
preKeys: Array<{
|
|
|
|
keyId: number;
|
2021-09-24 00:49:05 +00:00
|
|
|
publicKey: Uint8Array;
|
2020-04-13 17:37:29 +00:00
|
|
|
}>;
|
|
|
|
signedPreKey: {
|
|
|
|
keyId: number;
|
2021-09-24 00:49:05 +00:00
|
|
|
publicKey: Uint8Array;
|
|
|
|
signature: Uint8Array;
|
2020-04-13 17:37:29 +00:00
|
|
|
keyPair: KeyPairType;
|
|
|
|
};
|
2021-09-24 00:49:05 +00:00
|
|
|
identityKey: Uint8Array;
|
2020-04-13 17:37:29 +00:00
|
|
|
};
|
|
|
|
|
2021-12-03 02:06:32 +00:00
|
|
|
type CreateAccountOptionsType = Readonly<{
|
|
|
|
number: string;
|
|
|
|
verificationCode: string;
|
2022-03-01 23:01:21 +00:00
|
|
|
aciKeyPair: KeyPairType;
|
2021-12-03 02:06:32 +00:00
|
|
|
pniKeyPair?: KeyPairType;
|
|
|
|
profileKey?: Uint8Array;
|
|
|
|
deviceName?: string;
|
|
|
|
userAgent?: string;
|
|
|
|
readReceipts?: boolean;
|
|
|
|
accessKey?: Uint8Array;
|
|
|
|
}>;
|
|
|
|
|
2020-04-13 17:37:29 +00:00
|
|
|
export default class AccountManager extends EventTarget {
|
|
|
|
pending: Promise<void>;
|
2020-09-24 21:53:21 +00:00
|
|
|
|
2020-04-13 17:37:29 +00:00
|
|
|
pendingQueue?: PQueue;
|
|
|
|
|
2021-07-23 17:23:50 +00:00
|
|
|
constructor(private readonly server: WebAPIType) {
|
2020-04-13 17:37:29 +00:00
|
|
|
super();
|
|
|
|
|
|
|
|
this.pending = Promise.resolve();
|
|
|
|
}
|
|
|
|
|
2022-03-25 17:36:08 +00:00
|
|
|
async requestVoiceVerification(number: string, token: string): Promise<void> {
|
2021-11-30 17:51:53 +00:00
|
|
|
return this.server.requestVerificationVoice(number, token);
|
2020-04-13 17:37:29 +00:00
|
|
|
}
|
2020-09-24 21:53:21 +00:00
|
|
|
|
2022-03-25 17:36:08 +00:00
|
|
|
async requestSMSVerification(number: string, token: string): Promise<void> {
|
2021-11-30 17:51:53 +00:00
|
|
|
return this.server.requestVerificationSMS(number, token);
|
2020-04-13 17:37:29 +00:00
|
|
|
}
|
2020-09-24 21:53:21 +00:00
|
|
|
|
2022-03-25 17:36:08 +00:00
|
|
|
encryptDeviceName(name: string, identityKey: KeyPairType): string | null {
|
2020-04-13 17:37:29 +00:00
|
|
|
if (!name) {
|
|
|
|
return null;
|
|
|
|
}
|
2021-09-24 00:49:05 +00:00
|
|
|
const encrypted = encryptDeviceName(name, identityKey.pubKey);
|
2020-04-13 17:37:29 +00:00
|
|
|
|
2021-07-02 19:21:24 +00:00
|
|
|
const proto = new Proto.DeviceName();
|
2021-09-24 00:49:05 +00:00
|
|
|
proto.ephemeralPublic = encrypted.ephemeralPublic;
|
|
|
|
proto.syntheticIv = encrypted.syntheticIv;
|
|
|
|
proto.ciphertext = encrypted.ciphertext;
|
2020-04-13 17:37:29 +00:00
|
|
|
|
2021-07-02 19:21:24 +00:00
|
|
|
const bytes = Proto.DeviceName.encode(proto).finish();
|
|
|
|
return Bytes.toBase64(bytes);
|
2020-04-13 17:37:29 +00:00
|
|
|
}
|
2020-09-24 21:53:21 +00:00
|
|
|
|
2022-03-25 17:36:08 +00:00
|
|
|
async decryptDeviceName(base64: string): Promise<string> {
|
2021-09-10 02:38:11 +00:00
|
|
|
const ourUuid = window.textsecure.storage.user.getCheckedUuid();
|
2021-11-11 22:43:05 +00:00
|
|
|
const identityKey =
|
2022-08-15 21:53:33 +00:00
|
|
|
window.textsecure.storage.protocol.getIdentityKeyPair(ourUuid);
|
2021-04-16 23:13:13 +00:00
|
|
|
if (!identityKey) {
|
|
|
|
throw new Error('decryptDeviceName: No identity key pair!');
|
|
|
|
}
|
2020-04-13 17:37:29 +00:00
|
|
|
|
2021-07-02 19:21:24 +00:00
|
|
|
const bytes = Bytes.fromBase64(base64);
|
|
|
|
const proto = Proto.DeviceName.decode(bytes);
|
2022-09-15 19:17:15 +00:00
|
|
|
assertDev(
|
2021-07-02 19:21:24 +00:00
|
|
|
proto.ephemeralPublic && proto.syntheticIv && proto.ciphertext,
|
|
|
|
'Missing required fields in DeviceName'
|
|
|
|
);
|
2020-04-13 17:37:29 +00:00
|
|
|
|
2021-09-24 00:49:05 +00:00
|
|
|
const name = decryptDeviceName(proto, identityKey.privKey);
|
2020-04-13 17:37:29 +00:00
|
|
|
|
|
|
|
return name;
|
|
|
|
}
|
2020-09-24 21:53:21 +00:00
|
|
|
|
2022-03-25 17:36:08 +00:00
|
|
|
async maybeUpdateDeviceName(): Promise<void> {
|
2021-11-11 22:43:05 +00:00
|
|
|
const isNameEncrypted =
|
|
|
|
window.textsecure.storage.user.getDeviceNameEncrypted();
|
2020-04-13 17:37:29 +00:00
|
|
|
if (isNameEncrypted) {
|
|
|
|
return;
|
|
|
|
}
|
2021-09-10 02:38:11 +00:00
|
|
|
const { storage } = window.textsecure;
|
|
|
|
const deviceName = storage.user.getDeviceName();
|
2022-08-15 21:53:33 +00:00
|
|
|
const identityKeyPair = storage.protocol.getIdentityKeyPair(
|
2021-09-10 02:38:11 +00:00
|
|
|
storage.user.getCheckedUuid()
|
|
|
|
);
|
|
|
|
strictAssert(
|
|
|
|
identityKeyPair !== undefined,
|
|
|
|
"Can't encrypt device name without identity key pair"
|
|
|
|
);
|
2021-09-24 00:49:05 +00:00
|
|
|
const base64 = this.encryptDeviceName(deviceName || '', identityKeyPair);
|
2020-04-13 17:37:29 +00:00
|
|
|
|
|
|
|
if (base64) {
|
|
|
|
await this.server.updateDeviceName(base64);
|
|
|
|
}
|
|
|
|
}
|
2020-09-24 21:53:21 +00:00
|
|
|
|
2022-03-25 17:36:08 +00:00
|
|
|
async deviceNameIsEncrypted(): Promise<void> {
|
2020-04-13 17:37:29 +00:00
|
|
|
await window.textsecure.storage.user.setDeviceNameEncrypted();
|
|
|
|
}
|
2020-09-24 21:53:21 +00:00
|
|
|
|
2022-03-25 17:36:08 +00:00
|
|
|
async registerSingleDevice(
|
|
|
|
number: string,
|
|
|
|
verificationCode: string
|
|
|
|
): Promise<void> {
|
2021-04-16 23:13:13 +00:00
|
|
|
return this.queueTask(async () => {
|
2022-03-01 23:01:21 +00:00
|
|
|
const aciKeyPair = generateKeyPair();
|
2021-12-03 02:06:32 +00:00
|
|
|
const pniKeyPair = generateKeyPair();
|
2021-04-16 23:13:13 +00:00
|
|
|
const profileKey = getRandomBytes(PROFILE_KEY_LENGTH);
|
2021-09-24 00:49:05 +00:00
|
|
|
const accessKey = deriveAccessKey(profileKey);
|
2021-04-16 23:13:13 +00:00
|
|
|
|
2021-12-17 21:26:50 +00:00
|
|
|
const registrationBaton = this.server.startRegistration();
|
|
|
|
try {
|
|
|
|
await this.createAccount({
|
|
|
|
number,
|
|
|
|
verificationCode,
|
2022-03-01 23:01:21 +00:00
|
|
|
aciKeyPair,
|
2021-12-17 21:26:50 +00:00
|
|
|
pniKeyPair,
|
|
|
|
profileKey,
|
|
|
|
accessKey,
|
|
|
|
});
|
|
|
|
|
|
|
|
await this.clearSessionsAndPreKeys();
|
|
|
|
|
|
|
|
await Promise.all(
|
|
|
|
[UUIDKind.ACI, UUIDKind.PNI].map(async kind => {
|
|
|
|
const keys = await this.generateKeys(
|
|
|
|
SIGNED_KEY_GEN_BATCH_SIZE,
|
|
|
|
kind
|
|
|
|
);
|
|
|
|
await this.server.registerKeys(keys, kind);
|
|
|
|
await this.confirmKeys(keys, kind);
|
|
|
|
})
|
|
|
|
);
|
|
|
|
} finally {
|
|
|
|
this.server.finishRegistration(registrationBaton);
|
|
|
|
}
|
2021-04-16 23:13:13 +00:00
|
|
|
await this.registrationDone();
|
|
|
|
});
|
2020-04-13 17:37:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
async registerSecondDevice(
|
2022-03-25 17:36:08 +00:00
|
|
|
setProvisioningUrl: (url: string) => void,
|
2021-12-03 17:46:44 +00:00
|
|
|
confirmNumber: (number?: string) => Promise<string>
|
2022-03-25 17:36:08 +00:00
|
|
|
): Promise<void> {
|
2020-04-13 17:37:29 +00:00
|
|
|
const clearSessionsAndPreKeys = this.clearSessionsAndPreKeys.bind(this);
|
|
|
|
const provisioningCipher = new ProvisioningCipher();
|
2021-06-09 22:28:54 +00:00
|
|
|
const pubKey = await provisioningCipher.getPublicKey();
|
|
|
|
|
2021-07-28 21:37:09 +00:00
|
|
|
let envelopeCallbacks:
|
|
|
|
| {
|
|
|
|
resolve(data: Proto.ProvisionEnvelope): void;
|
|
|
|
reject(error: Error): void;
|
|
|
|
}
|
|
|
|
| undefined;
|
|
|
|
const envelopePromise = new Promise<Proto.ProvisionEnvelope>(
|
|
|
|
(resolve, reject) => {
|
|
|
|
envelopeCallbacks = { resolve, reject };
|
|
|
|
}
|
|
|
|
);
|
2021-06-09 22:28:54 +00:00
|
|
|
|
2021-07-28 21:37:09 +00:00
|
|
|
const wsr = await this.server.getProvisioningResource({
|
|
|
|
handleRequest(request: IncomingWebSocketRequest) {
|
|
|
|
if (
|
|
|
|
request.path === '/v1/address' &&
|
|
|
|
request.verb === 'PUT' &&
|
|
|
|
request.body
|
|
|
|
) {
|
|
|
|
const proto = Proto.ProvisioningUuid.decode(request.body);
|
|
|
|
const { uuid } = proto;
|
|
|
|
if (!uuid) {
|
|
|
|
throw new Error('registerSecondDevice: expected a UUID');
|
|
|
|
}
|
|
|
|
const url = getProvisioningUrl(uuid, pubKey);
|
2021-06-09 22:28:54 +00:00
|
|
|
|
2021-08-11 19:29:07 +00:00
|
|
|
window.CI?.setProvisioningURL(url);
|
2021-07-28 21:37:09 +00:00
|
|
|
|
|
|
|
setProvisioningUrl(url);
|
|
|
|
request.respond(200, 'OK');
|
|
|
|
} else if (
|
|
|
|
request.path === '/v1/message' &&
|
|
|
|
request.verb === 'PUT' &&
|
|
|
|
request.body
|
|
|
|
) {
|
|
|
|
const envelope = Proto.ProvisionEnvelope.decode(request.body);
|
|
|
|
request.respond(200, 'OK');
|
|
|
|
wsr.close();
|
|
|
|
envelopeCallbacks?.resolve(envelope);
|
|
|
|
} else {
|
2021-09-17 18:27:53 +00:00
|
|
|
log.error('Unknown websocket message', request.path);
|
2021-06-09 22:28:54 +00:00
|
|
|
}
|
2021-07-28 21:37:09 +00:00
|
|
|
},
|
|
|
|
});
|
2021-06-09 22:28:54 +00:00
|
|
|
|
2021-09-17 18:27:53 +00:00
|
|
|
log.info('provisioning socket open');
|
2021-06-09 22:28:54 +00:00
|
|
|
|
2021-07-28 21:37:09 +00:00
|
|
|
wsr.addEventListener('close', ({ code, reason }) => {
|
2021-09-17 18:27:53 +00:00
|
|
|
log.info(`provisioning socket closed. Code: ${code} Reason: ${reason}`);
|
2021-06-09 22:28:54 +00:00
|
|
|
|
2021-07-28 21:37:09 +00:00
|
|
|
// Note: if we have resolved the envelope already - this has no effect
|
|
|
|
envelopeCallbacks?.reject(new Error('websocket closed'));
|
|
|
|
});
|
|
|
|
|
|
|
|
const envelope = await envelopePromise;
|
|
|
|
const provisionMessage = await provisioningCipher.decrypt(envelope);
|
|
|
|
|
|
|
|
await this.queueTask(async () => {
|
|
|
|
const deviceName = await confirmNumber(provisionMessage.number);
|
|
|
|
if (typeof deviceName !== 'string' || deviceName.length === 0) {
|
|
|
|
throw new Error(
|
|
|
|
'AccountManager.registerSecondDevice: Invalid device name'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
if (
|
|
|
|
!provisionMessage.number ||
|
|
|
|
!provisionMessage.provisioningCode ||
|
2022-03-01 23:01:21 +00:00
|
|
|
!provisionMessage.aciKeyPair
|
2021-07-28 21:37:09 +00:00
|
|
|
) {
|
|
|
|
throw new Error(
|
|
|
|
'AccountManager.registerSecondDevice: Provision message was missing key data'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-12-17 21:26:50 +00:00
|
|
|
const registrationBaton = this.server.startRegistration();
|
|
|
|
|
|
|
|
try {
|
|
|
|
await this.createAccount({
|
|
|
|
number: provisionMessage.number,
|
|
|
|
verificationCode: provisionMessage.provisioningCode,
|
2022-03-01 23:01:21 +00:00
|
|
|
aciKeyPair: provisionMessage.aciKeyPair,
|
|
|
|
pniKeyPair: provisionMessage.pniKeyPair,
|
2021-12-17 21:26:50 +00:00
|
|
|
profileKey: provisionMessage.profileKey,
|
|
|
|
deviceName,
|
|
|
|
userAgent: provisionMessage.userAgent,
|
|
|
|
readReceipts: provisionMessage.readReceipts,
|
|
|
|
});
|
|
|
|
await clearSessionsAndPreKeys();
|
2022-03-01 23:01:21 +00:00
|
|
|
|
|
|
|
const keyKinds = [UUIDKind.ACI];
|
|
|
|
if (provisionMessage.pniKeyPair) {
|
|
|
|
keyKinds.push(UUIDKind.PNI);
|
|
|
|
}
|
|
|
|
|
|
|
|
await Promise.all(
|
|
|
|
keyKinds.map(async kind => {
|
|
|
|
const keys = await this.generateKeys(
|
|
|
|
SIGNED_KEY_GEN_BATCH_SIZE,
|
|
|
|
kind
|
|
|
|
);
|
|
|
|
|
2022-04-22 19:02:23 +00:00
|
|
|
try {
|
|
|
|
await this.server.registerKeys(keys, kind);
|
|
|
|
await this.confirmKeys(keys, kind);
|
|
|
|
} catch (error) {
|
|
|
|
if (kind === UUIDKind.PNI) {
|
|
|
|
log.error(
|
|
|
|
'Failed to upload PNI prekeys. Moving on',
|
|
|
|
Errors.toLogFormat(error)
|
|
|
|
);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
throw error;
|
|
|
|
}
|
2022-03-01 23:01:21 +00:00
|
|
|
})
|
2021-12-17 21:26:50 +00:00
|
|
|
);
|
|
|
|
} finally {
|
|
|
|
this.server.finishRegistration(registrationBaton);
|
|
|
|
}
|
|
|
|
|
2021-07-28 21:37:09 +00:00
|
|
|
await this.registrationDone();
|
2021-06-09 22:28:54 +00:00
|
|
|
});
|
2020-04-13 17:37:29 +00:00
|
|
|
}
|
2020-09-24 21:53:21 +00:00
|
|
|
|
2022-03-25 17:36:08 +00:00
|
|
|
async refreshPreKeys(uuidKind: UUIDKind): Promise<void> {
|
2021-11-30 19:33:51 +00:00
|
|
|
return this.queueTask(async () => {
|
|
|
|
const preKeyCount = await this.server.getMyKeys(uuidKind);
|
|
|
|
log.info(`prekey count ${preKeyCount}`);
|
|
|
|
if (preKeyCount >= 10) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
const keys = await this.generateKeys(SIGNED_KEY_GEN_BATCH_SIZE, uuidKind);
|
|
|
|
await this.server.registerKeys(keys, uuidKind);
|
2022-07-28 16:35:29 +00:00
|
|
|
await this.confirmKeys(keys, uuidKind);
|
2021-11-30 19:33:51 +00:00
|
|
|
});
|
2020-04-13 17:37:29 +00:00
|
|
|
}
|
2020-09-24 21:53:21 +00:00
|
|
|
|
2022-03-25 17:36:08 +00:00
|
|
|
async rotateSignedPreKey(uuidKind: UUIDKind): Promise<void> {
|
2020-04-13 17:37:29 +00:00
|
|
|
return this.queueTask(async () => {
|
2021-11-30 19:33:51 +00:00
|
|
|
const ourUuid = window.textsecure.storage.user.getCheckedUuid(uuidKind);
|
2020-04-13 17:37:29 +00:00
|
|
|
const signedKeyId = window.textsecure.storage.get('signedKeyId', 1);
|
|
|
|
if (typeof signedKeyId !== 'number') {
|
|
|
|
throw new Error('Invalid signedKeyId');
|
|
|
|
}
|
|
|
|
|
|
|
|
const store = window.textsecure.storage.protocol;
|
2021-12-09 19:45:21 +00:00
|
|
|
const { server } = this;
|
2020-04-13 17:37:29 +00:00
|
|
|
|
2021-09-10 02:38:11 +00:00
|
|
|
const existingKeys = await store.loadSignedPreKeys(ourUuid);
|
2020-06-11 20:29:14 +00:00
|
|
|
existingKeys.sort((a, b) => (b.created_at || 0) - (a.created_at || 0));
|
|
|
|
const confirmedKeys = existingKeys.filter(key => key.confirmed);
|
2021-08-03 22:26:00 +00:00
|
|
|
const mostRecent = confirmedKeys[0];
|
2020-06-11 20:29:14 +00:00
|
|
|
|
2021-08-20 18:27:12 +00:00
|
|
|
if (isMoreRecentThan(mostRecent?.created_at || 0, PREKEY_ROTATION_AGE)) {
|
2021-09-17 18:27:53 +00:00
|
|
|
log.warn(
|
2021-12-09 19:45:21 +00:00
|
|
|
`rotateSignedPreKey(${uuidKind}): ${confirmedKeys.length} ` +
|
|
|
|
`confirmed keys, most recent was created ${mostRecent?.created_at}. Cancelling rotation.`
|
2020-06-11 20:29:14 +00:00
|
|
|
);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-12-09 19:45:21 +00:00
|
|
|
let identityKey: KeyPairType | undefined;
|
|
|
|
try {
|
2022-08-15 21:53:33 +00:00
|
|
|
identityKey = store.getIdentityKeyPair(ourUuid);
|
2021-12-09 19:45:21 +00:00
|
|
|
} catch (error) {
|
|
|
|
// We swallow any error here, because we don't want to get into
|
|
|
|
// a loop of repeated retries.
|
|
|
|
log.error(
|
|
|
|
'Failed to get identity key. Canceling key rotation.',
|
|
|
|
Errors.toLogFormat(error)
|
|
|
|
);
|
|
|
|
return;
|
|
|
|
}
|
2021-04-16 23:13:13 +00:00
|
|
|
|
2021-12-09 19:45:21 +00:00
|
|
|
if (!identityKey) {
|
|
|
|
// TODO: DESKTOP-2855
|
|
|
|
if (uuidKind === UUIDKind.PNI) {
|
|
|
|
log.warn(`rotateSignedPreKey(${uuidKind}): No identity key pair!`);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
throw new Error(
|
|
|
|
`rotateSignedPreKey(${uuidKind}): No identity key pair!`
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
const res = await generateSignedPreKey(identityKey, signedKeyId);
|
|
|
|
|
|
|
|
log.info(
|
|
|
|
`rotateSignedPreKey(${uuidKind}): Saving new signed prekey`,
|
|
|
|
res.keyId
|
|
|
|
);
|
|
|
|
|
|
|
|
await Promise.all([
|
|
|
|
window.textsecure.storage.put('signedKeyId', signedKeyId + 1),
|
|
|
|
store.storeSignedPreKey(ourUuid, res.keyId, res.keyPair),
|
|
|
|
]);
|
|
|
|
|
|
|
|
try {
|
|
|
|
await server.setSignedPreKey(
|
|
|
|
{
|
|
|
|
keyId: res.keyId,
|
|
|
|
publicKey: res.keyPair.pubKey,
|
|
|
|
signature: res.signature,
|
2021-04-16 23:13:13 +00:00
|
|
|
},
|
2021-12-09 19:45:21 +00:00
|
|
|
uuidKind
|
|
|
|
);
|
|
|
|
} catch (error) {
|
|
|
|
log.error(
|
|
|
|
`rotateSignedPrekey(${uuidKind}) error:`,
|
|
|
|
Errors.toLogFormat(error)
|
|
|
|
);
|
|
|
|
|
|
|
|
if (
|
|
|
|
error instanceof HTTPError &&
|
|
|
|
error.code >= 400 &&
|
|
|
|
error.code <= 599
|
|
|
|
) {
|
|
|
|
const rejections =
|
|
|
|
1 + window.textsecure.storage.get('signedKeyRotationRejected', 0);
|
|
|
|
await window.textsecure.storage.put(
|
|
|
|
'signedKeyRotationRejected',
|
|
|
|
rejections
|
|
|
|
);
|
|
|
|
log.error(
|
|
|
|
`rotateSignedPreKey(${uuidKind}): Signed key rotation rejected count:`,
|
|
|
|
rejections
|
|
|
|
);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
throw error;
|
|
|
|
}
|
|
|
|
|
|
|
|
const confirmed = true;
|
|
|
|
log.info('Confirming new signed prekey', res.keyId);
|
|
|
|
await Promise.all([
|
|
|
|
window.textsecure.storage.remove('signedKeyRotationRejected'),
|
|
|
|
store.storeSignedPreKey(ourUuid, res.keyId, res.keyPair, confirmed),
|
|
|
|
]);
|
|
|
|
|
|
|
|
try {
|
2022-09-27 16:33:56 +00:00
|
|
|
await Promise.all([
|
|
|
|
this.cleanSignedPreKeys(UUIDKind.ACI),
|
|
|
|
this.cleanSignedPreKeys(UUIDKind.PNI),
|
|
|
|
]);
|
2021-12-09 19:45:21 +00:00
|
|
|
} catch (_error) {
|
|
|
|
// Ignoring the error
|
|
|
|
}
|
2020-04-13 17:37:29 +00:00
|
|
|
});
|
|
|
|
}
|
2020-09-24 21:53:21 +00:00
|
|
|
|
2022-03-25 17:36:08 +00:00
|
|
|
async queueTask<T>(task: () => Promise<T>): Promise<T> {
|
2020-04-13 17:37:29 +00:00
|
|
|
this.pendingQueue = this.pendingQueue || new PQueue({ concurrency: 1 });
|
2021-07-28 21:37:09 +00:00
|
|
|
const taskWithTimeout = createTaskWithTimeout(task, 'AccountManager task');
|
2020-04-13 17:37:29 +00:00
|
|
|
|
|
|
|
return this.pendingQueue.add(taskWithTimeout);
|
|
|
|
}
|
2020-09-24 21:53:21 +00:00
|
|
|
|
2022-09-27 16:33:56 +00:00
|
|
|
async cleanSignedPreKeys(uuidKind: UUIDKind): Promise<void> {
|
|
|
|
const ourUuid = window.textsecure.storage.user.getCheckedUuid(uuidKind);
|
2020-04-13 17:37:29 +00:00
|
|
|
const store = window.textsecure.storage.protocol;
|
2022-09-27 16:33:56 +00:00
|
|
|
const logId = `AccountManager.cleanSignedPreKeys(${uuidKind})`;
|
2020-04-13 17:37:29 +00:00
|
|
|
|
2021-09-10 02:38:11 +00:00
|
|
|
const allKeys = await store.loadSignedPreKeys(ourUuid);
|
2021-08-03 22:26:00 +00:00
|
|
|
allKeys.sort((a, b) => (b.created_at || 0) - (a.created_at || 0));
|
|
|
|
const confirmed = allKeys.filter(key => key.confirmed);
|
|
|
|
const unconfirmed = allKeys.filter(key => !key.confirmed);
|
2020-04-13 17:37:29 +00:00
|
|
|
|
2021-08-03 22:26:00 +00:00
|
|
|
const recent = allKeys[0] ? allKeys[0].keyId : 'none';
|
|
|
|
const recentConfirmed = confirmed[0] ? confirmed[0].keyId : 'none';
|
|
|
|
const recentUnconfirmed = unconfirmed[0] ? unconfirmed[0].keyId : 'none';
|
2022-09-27 16:33:56 +00:00
|
|
|
log.info(`${logId}: Most recent signed key: ${recent}`);
|
|
|
|
log.info(`${logId}: Most recent confirmed signed key: ${recentConfirmed}`);
|
2021-09-17 18:27:53 +00:00
|
|
|
log.info(
|
2022-09-27 16:33:56 +00:00
|
|
|
`${logId}: Most recent unconfirmed signed key: ${recentUnconfirmed}`
|
2021-08-03 22:26:00 +00:00
|
|
|
);
|
2021-09-17 18:27:53 +00:00
|
|
|
log.info(
|
2022-09-27 16:33:56 +00:00
|
|
|
`${logId}: Total signed key count:`,
|
2021-08-03 22:26:00 +00:00
|
|
|
allKeys.length,
|
|
|
|
'-',
|
|
|
|
confirmed.length,
|
|
|
|
'confirmed'
|
|
|
|
);
|
2020-04-13 17:37:29 +00:00
|
|
|
|
2021-08-03 22:26:00 +00:00
|
|
|
// Keep MINIMUM_SIGNED_PREKEYS keys, then drop if older than ARCHIVE_AGE
|
|
|
|
await Promise.all(
|
|
|
|
allKeys.map(async (key, index) => {
|
|
|
|
if (index < MINIMUM_SIGNED_PREKEYS) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
const createdAt = key.created_at || 0;
|
2020-04-13 17:37:29 +00:00
|
|
|
|
2021-08-03 22:26:00 +00:00
|
|
|
if (isOlderThan(createdAt, ARCHIVE_AGE)) {
|
|
|
|
const timestamp = new Date(createdAt).toJSON();
|
|
|
|
const confirmedText = key.confirmed ? ' (confirmed)' : '';
|
2021-09-17 18:27:53 +00:00
|
|
|
log.info(
|
2022-09-27 16:33:56 +00:00
|
|
|
`${logId}: Removing signed prekey: ${key.keyId} with ` +
|
|
|
|
`timestamp ${timestamp}${confirmedText}`
|
2021-08-03 22:26:00 +00:00
|
|
|
);
|
2021-09-10 02:38:11 +00:00
|
|
|
await store.removeSignedPreKey(ourUuid, key.keyId);
|
2021-08-03 22:26:00 +00:00
|
|
|
}
|
|
|
|
})
|
|
|
|
);
|
2020-04-13 17:37:29 +00:00
|
|
|
}
|
|
|
|
|
2021-12-03 02:06:32 +00:00
|
|
|
async createAccount({
|
|
|
|
number,
|
|
|
|
verificationCode,
|
2022-03-01 23:01:21 +00:00
|
|
|
aciKeyPair,
|
2021-12-03 02:06:32 +00:00
|
|
|
pniKeyPair,
|
|
|
|
profileKey,
|
|
|
|
deviceName,
|
|
|
|
userAgent,
|
|
|
|
readReceipts,
|
|
|
|
accessKey,
|
|
|
|
}: CreateAccountOptionsType): Promise<void> {
|
2021-09-10 02:38:11 +00:00
|
|
|
const { storage } = window.textsecure;
|
2021-09-24 00:49:05 +00:00
|
|
|
let password = Bytes.toBase64(getRandomBytes(16));
|
2020-04-13 17:37:29 +00:00
|
|
|
password = password.substring(0, password.length - 2);
|
2021-04-16 23:13:13 +00:00
|
|
|
const registrationId = generateRegistrationId();
|
2022-10-05 00:50:07 +00:00
|
|
|
const pniRegistrationId = generateRegistrationId();
|
2020-04-13 17:37:29 +00:00
|
|
|
|
2022-07-18 22:32:00 +00:00
|
|
|
const previousNumber = storage.user.getNumber();
|
|
|
|
const previousACI = storage.user.getUuid(UUIDKind.ACI)?.toString();
|
|
|
|
const previousPNI = storage.user.getUuid(UUIDKind.PNI)?.toString();
|
2020-04-13 17:37:29 +00:00
|
|
|
|
|
|
|
let encryptedDeviceName;
|
|
|
|
if (deviceName) {
|
2022-03-01 23:01:21 +00:00
|
|
|
encryptedDeviceName = this.encryptDeviceName(deviceName, aciKeyPair);
|
2020-04-13 17:37:29 +00:00
|
|
|
await this.deviceNameIsEncrypted();
|
|
|
|
}
|
|
|
|
|
2021-09-17 18:27:53 +00:00
|
|
|
log.info(
|
2020-04-13 17:37:29 +00:00
|
|
|
`createAccount: Number is ${number}, password has length: ${
|
|
|
|
password ? password.length : 'none'
|
|
|
|
}`
|
|
|
|
);
|
|
|
|
|
2022-10-05 00:50:07 +00:00
|
|
|
const response = await this.server.confirmCode({
|
2020-04-13 17:37:29 +00:00
|
|
|
number,
|
2022-10-05 00:50:07 +00:00
|
|
|
code: verificationCode,
|
|
|
|
newPassword: password,
|
2020-04-13 17:37:29 +00:00
|
|
|
registrationId,
|
2022-10-05 00:50:07 +00:00
|
|
|
pniRegistrationId,
|
|
|
|
deviceName: encryptedDeviceName,
|
|
|
|
accessKey,
|
|
|
|
});
|
2020-04-13 17:37:29 +00:00
|
|
|
|
2021-12-03 02:06:32 +00:00
|
|
|
const ourUuid = UUID.cast(response.uuid);
|
|
|
|
const ourPni = UUID.cast(response.pni);
|
2021-09-10 02:38:11 +00:00
|
|
|
|
2022-07-18 22:32:00 +00:00
|
|
|
const uuidChanged = previousACI && ourUuid && previousACI !== ourUuid;
|
2020-04-13 17:37:29 +00:00
|
|
|
|
2021-06-08 18:54:20 +00:00
|
|
|
// We only consider the number changed if we didn't have a UUID before
|
|
|
|
const numberChanged =
|
2022-07-18 22:32:00 +00:00
|
|
|
!previousACI && previousNumber && previousNumber !== number;
|
2021-06-08 18:54:20 +00:00
|
|
|
|
|
|
|
if (uuidChanged || numberChanged) {
|
|
|
|
if (uuidChanged) {
|
2021-09-17 18:27:53 +00:00
|
|
|
log.warn(
|
2021-09-27 17:31:34 +00:00
|
|
|
'createAccount: New uuid is different from old uuid; deleting all previous data'
|
2020-04-13 17:37:29 +00:00
|
|
|
);
|
|
|
|
}
|
2021-06-08 18:54:20 +00:00
|
|
|
if (numberChanged) {
|
2021-09-17 18:27:53 +00:00
|
|
|
log.warn(
|
2021-09-27 17:31:34 +00:00
|
|
|
'createAccount: New number is different from old number; deleting all previous data'
|
2020-04-13 17:37:29 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
2021-09-10 02:38:11 +00:00
|
|
|
await storage.protocol.removeAllData();
|
2021-09-27 17:31:34 +00:00
|
|
|
log.info('createAccount: Successfully deleted previous data');
|
2020-04-13 17:37:29 +00:00
|
|
|
} catch (error) {
|
2021-09-17 18:27:53 +00:00
|
|
|
log.error(
|
2020-04-13 17:37:29 +00:00
|
|
|
'Something went wrong deleting data from previous number',
|
|
|
|
error && error.stack ? error.stack : error
|
|
|
|
);
|
|
|
|
}
|
2021-09-27 17:31:34 +00:00
|
|
|
} else {
|
|
|
|
log.info('createAccount: Erasing configuration (soft)');
|
|
|
|
await storage.protocol.removeAllConfiguration(
|
|
|
|
RemoveAllConfiguration.Soft
|
|
|
|
);
|
2020-04-13 17:37:29 +00:00
|
|
|
}
|
|
|
|
|
2021-09-27 17:31:34 +00:00
|
|
|
await senderCertificateService.clear();
|
2020-04-13 17:37:29 +00:00
|
|
|
|
2022-07-18 22:32:00 +00:00
|
|
|
const previousUuids = [previousACI, previousPNI].filter(isNotNil);
|
|
|
|
|
|
|
|
if (previousUuids.length > 0) {
|
2021-09-10 02:38:11 +00:00
|
|
|
await Promise.all([
|
|
|
|
storage.put(
|
|
|
|
'identityKeyMap',
|
2022-07-18 22:32:00 +00:00
|
|
|
omit(storage.get('identityKeyMap') || {}, previousUuids)
|
2021-09-10 02:38:11 +00:00
|
|
|
),
|
|
|
|
storage.put(
|
|
|
|
'registrationIdMap',
|
2022-07-18 22:32:00 +00:00
|
|
|
omit(storage.get('registrationIdMap') || {}, previousUuids)
|
2021-09-10 02:38:11 +00:00
|
|
|
),
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
2021-07-23 17:23:50 +00:00
|
|
|
// `setCredentials` needs to be called
|
2020-04-13 17:37:29 +00:00
|
|
|
// before `saveIdentifyWithAttributes` since `saveIdentityWithAttributes`
|
|
|
|
// indirectly calls `ConversationController.getConverationId()` which
|
|
|
|
// initializes the conversation for the given number (our number) which
|
|
|
|
// calls out to the user storage API to get the stored UUID and number
|
|
|
|
// information.
|
2021-09-10 02:38:11 +00:00
|
|
|
await storage.user.setCredentials({
|
|
|
|
uuid: ourUuid,
|
2021-12-03 02:06:32 +00:00
|
|
|
pni: ourPni,
|
2020-04-13 17:37:29 +00:00
|
|
|
number,
|
2021-07-23 17:23:50 +00:00
|
|
|
deviceId: response.deviceId ?? 1,
|
|
|
|
deviceName: deviceName ?? undefined,
|
|
|
|
password,
|
|
|
|
});
|
2020-04-13 17:37:29 +00:00
|
|
|
|
2021-01-15 16:57:09 +00:00
|
|
|
// This needs to be done very early, because it changes how things are saved in the
|
|
|
|
// database. Your identity, for example, in the saveIdentityWithAttributes call
|
|
|
|
// below.
|
2022-08-09 21:39:00 +00:00
|
|
|
const conversationId = window.ConversationController.maybeMergeContacts({
|
|
|
|
aci: ourUuid,
|
2022-08-16 23:52:34 +00:00
|
|
|
pni: ourPni,
|
2021-01-15 16:57:09 +00:00
|
|
|
e164: number,
|
2022-01-20 22:44:25 +00:00
|
|
|
reason: 'createAccount',
|
2021-01-15 16:57:09 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
if (!conversationId) {
|
|
|
|
throw new Error('registrationDone: no conversationId!');
|
|
|
|
}
|
|
|
|
|
2021-12-03 02:06:32 +00:00
|
|
|
const identityAttrs = {
|
2021-09-10 02:38:11 +00:00
|
|
|
firstUse: true,
|
|
|
|
timestamp: Date.now(),
|
|
|
|
verified: storage.protocol.VerifiedStatus.VERIFIED,
|
|
|
|
nonblockingApproval: true,
|
2021-12-03 02:06:32 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// update our own identity key, which may have changed
|
|
|
|
// if we're relinking after a reinstall on the master device
|
|
|
|
await Promise.all([
|
|
|
|
storage.protocol.saveIdentityWithAttributes(new UUID(ourUuid), {
|
|
|
|
...identityAttrs,
|
2022-03-01 23:01:21 +00:00
|
|
|
publicKey: aciKeyPair.pubKey,
|
2021-12-03 02:06:32 +00:00
|
|
|
}),
|
|
|
|
pniKeyPair
|
|
|
|
? storage.protocol.saveIdentityWithAttributes(new UUID(ourPni), {
|
|
|
|
...identityAttrs,
|
|
|
|
publicKey: pniKeyPair.pubKey,
|
|
|
|
})
|
|
|
|
: Promise.resolve(),
|
|
|
|
]);
|
2020-04-13 17:37:29 +00:00
|
|
|
|
2021-09-10 02:38:11 +00:00
|
|
|
const identityKeyMap = {
|
|
|
|
...(storage.get('identityKeyMap') || {}),
|
2022-07-28 16:35:29 +00:00
|
|
|
[ourUuid]: aciKeyPair,
|
2021-12-03 02:06:32 +00:00
|
|
|
...(pniKeyPair
|
|
|
|
? {
|
2022-07-28 16:35:29 +00:00
|
|
|
[ourPni]: pniKeyPair,
|
2021-12-03 02:06:32 +00:00
|
|
|
}
|
|
|
|
: {}),
|
2021-09-10 02:38:11 +00:00
|
|
|
};
|
|
|
|
const registrationIdMap = {
|
|
|
|
...(storage.get('registrationIdMap') || {}),
|
|
|
|
[ourUuid]: registrationId,
|
2022-10-05 00:50:07 +00:00
|
|
|
[ourPni]: pniRegistrationId,
|
2021-09-10 02:38:11 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
await storage.put('identityKeyMap', identityKeyMap);
|
|
|
|
await storage.put('registrationIdMap', registrationIdMap);
|
2020-04-13 17:37:29 +00:00
|
|
|
if (profileKey) {
|
2021-05-05 16:39:16 +00:00
|
|
|
await ourProfileKeyService.set(profileKey);
|
2020-04-13 17:37:29 +00:00
|
|
|
}
|
|
|
|
if (userAgent) {
|
2021-09-10 02:38:11 +00:00
|
|
|
await storage.put('userAgent', userAgent);
|
2020-04-13 17:37:29 +00:00
|
|
|
}
|
|
|
|
|
2021-09-10 02:38:11 +00:00
|
|
|
await storage.put('read-receipt-setting', Boolean(readReceipts));
|
2020-04-13 17:37:29 +00:00
|
|
|
|
2022-06-01 17:48:16 +00:00
|
|
|
const regionCode = getRegionCodeForNumber(number);
|
2021-09-10 02:38:11 +00:00
|
|
|
await storage.put('regionCode', regionCode);
|
|
|
|
await storage.protocol.hydrateCaches();
|
2020-04-13 17:37:29 +00:00
|
|
|
}
|
2020-09-24 21:53:21 +00:00
|
|
|
|
2022-03-25 17:36:08 +00:00
|
|
|
async clearSessionsAndPreKeys(): Promise<void> {
|
2020-04-13 17:37:29 +00:00
|
|
|
const store = window.textsecure.storage.protocol;
|
|
|
|
|
2021-09-17 18:27:53 +00:00
|
|
|
log.info('clearing all sessions, prekeys, and signed prekeys');
|
2020-04-13 17:37:29 +00:00
|
|
|
await Promise.all([
|
|
|
|
store.clearPreKeyStore(),
|
|
|
|
store.clearSignedPreKeysStore(),
|
|
|
|
store.clearSessionStore(),
|
|
|
|
]);
|
|
|
|
}
|
2020-09-09 02:25:05 +00:00
|
|
|
|
2022-03-25 17:36:08 +00:00
|
|
|
async updatePNIIdentity(identityKeyPair: KeyPairType): Promise<void> {
|
|
|
|
const { storage } = window.textsecure;
|
|
|
|
|
|
|
|
log.info('AccountManager.updatePNIIdentity: generating new keys');
|
|
|
|
|
2022-07-28 16:35:29 +00:00
|
|
|
await this.queueTask(async () => {
|
2022-03-25 17:36:08 +00:00
|
|
|
// Server has accepted our keys which means we have the latest PNI identity
|
|
|
|
// now that doesn't conflict the PNI identity of the primary device.
|
|
|
|
log.info(
|
|
|
|
'AccountManager.updatePNIIdentity: updating identity key ' +
|
|
|
|
'and registration id'
|
|
|
|
);
|
|
|
|
|
|
|
|
const pni = storage.user.getCheckedUuid(UUIDKind.PNI);
|
|
|
|
const identityKeyMap = {
|
|
|
|
...(storage.get('identityKeyMap') || {}),
|
2022-07-28 16:35:29 +00:00
|
|
|
[pni.toString()]: identityKeyPair,
|
2022-03-25 17:36:08 +00:00
|
|
|
};
|
|
|
|
|
2022-10-05 00:50:07 +00:00
|
|
|
await storage.put('identityKeyMap', identityKeyMap);
|
2022-03-25 17:36:08 +00:00
|
|
|
await storage.protocol.hydrateCaches();
|
|
|
|
});
|
2022-07-28 16:35:29 +00:00
|
|
|
|
|
|
|
// Intentionally not awaiting becase `updatePNIIdentity` runs on an
|
|
|
|
// Encrypted queue of MessageReceiver and we don't want to await remote
|
|
|
|
// endpoints and block message processing.
|
|
|
|
this.queueTask(async () => {
|
|
|
|
try {
|
|
|
|
const keys = await this.generateKeys(
|
|
|
|
SIGNED_KEY_GEN_BATCH_SIZE,
|
|
|
|
UUIDKind.PNI,
|
|
|
|
identityKeyPair
|
|
|
|
);
|
|
|
|
await this.server.registerKeys(keys, UUIDKind.PNI);
|
|
|
|
await this.confirmKeys(keys, UUIDKind.PNI);
|
2022-10-05 00:50:07 +00:00
|
|
|
|
|
|
|
const pni = storage.user.getCheckedUuid(UUIDKind.PNI);
|
|
|
|
|
|
|
|
// Repair registration id
|
|
|
|
const deviceId = storage.user.getDeviceId();
|
|
|
|
const { devices } = await this.server.getKeysForIdentifier(
|
|
|
|
pni.toString(),
|
|
|
|
deviceId
|
|
|
|
);
|
|
|
|
const us = devices.find(
|
|
|
|
remoteDevice => remoteDevice.deviceId === deviceId
|
|
|
|
);
|
|
|
|
if (us) {
|
|
|
|
const oldRegistrationIdMap = storage.get('registrationIdMap') || {};
|
|
|
|
const oldRegistrationId = oldRegistrationIdMap[pni.toString()];
|
|
|
|
if (oldRegistrationId !== us.registrationId) {
|
|
|
|
log.warn(
|
|
|
|
'updatePNIIdentity: repairing PNI registration id from ' +
|
|
|
|
`${oldRegistrationId} to ${us.registrationId}`
|
|
|
|
);
|
|
|
|
}
|
|
|
|
const registrationIdMap = {
|
|
|
|
...oldRegistrationIdMap,
|
|
|
|
[pni.toString()]: us.registrationId,
|
|
|
|
};
|
|
|
|
await storage.put('registrationIdMap', registrationIdMap);
|
|
|
|
}
|
2022-07-28 16:35:29 +00:00
|
|
|
} catch (error) {
|
|
|
|
log.error(
|
|
|
|
'updatePNIIdentity: Failed to upload PNI prekeys. Moving on',
|
|
|
|
Errors.toLogFormat(error)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
});
|
2022-03-25 17:36:08 +00:00
|
|
|
}
|
|
|
|
|
2020-04-13 17:37:29 +00:00
|
|
|
// Takes the same object returned by generateKeys
|
2022-03-25 17:36:08 +00:00
|
|
|
async confirmKeys(
|
|
|
|
keys: GeneratedKeysType,
|
|
|
|
uuidKind: UUIDKind
|
|
|
|
): Promise<void> {
|
2020-04-13 17:37:29 +00:00
|
|
|
const store = window.textsecure.storage.protocol;
|
|
|
|
const key = keys.signedPreKey;
|
|
|
|
const confirmed = true;
|
|
|
|
|
|
|
|
if (!key) {
|
|
|
|
throw new Error('confirmKeys: signedPreKey is null');
|
|
|
|
}
|
|
|
|
|
2021-12-03 02:06:32 +00:00
|
|
|
log.info(
|
|
|
|
`AccountManager.confirmKeys(${uuidKind}): confirming key`,
|
|
|
|
key.keyId
|
|
|
|
);
|
|
|
|
const ourUuid = window.textsecure.storage.user.getCheckedUuid(uuidKind);
|
2021-09-10 02:38:11 +00:00
|
|
|
await store.storeSignedPreKey(ourUuid, key.keyId, key.keyPair, confirmed);
|
2020-04-13 17:37:29 +00:00
|
|
|
}
|
2020-09-24 21:53:21 +00:00
|
|
|
|
2022-03-25 17:36:08 +00:00
|
|
|
async generateKeys(
|
|
|
|
count: number,
|
|
|
|
uuidKind: UUIDKind,
|
|
|
|
maybeIdentityKey?: KeyPairType
|
|
|
|
): Promise<GeneratedKeysType> {
|
|
|
|
const { storage } = window.textsecure;
|
|
|
|
|
|
|
|
const startId = storage.get('maxPreKeyId', 1);
|
|
|
|
const signedKeyId = storage.get('signedKeyId', 1);
|
|
|
|
const ourUuid = storage.user.getCheckedUuid(uuidKind);
|
2020-04-13 17:37:29 +00:00
|
|
|
|
|
|
|
if (typeof startId !== 'number') {
|
|
|
|
throw new Error('Invalid maxPreKeyId');
|
|
|
|
}
|
|
|
|
if (typeof signedKeyId !== 'number') {
|
|
|
|
throw new Error('Invalid signedKeyId');
|
|
|
|
}
|
|
|
|
|
2022-03-25 17:36:08 +00:00
|
|
|
const store = storage.protocol;
|
2022-08-15 21:53:33 +00:00
|
|
|
const identityKey = maybeIdentityKey ?? store.getIdentityKeyPair(ourUuid);
|
2022-03-25 17:36:08 +00:00
|
|
|
strictAssert(identityKey, 'generateKeys: No identity key pair!');
|
2021-04-16 23:13:13 +00:00
|
|
|
|
2022-03-25 17:36:08 +00:00
|
|
|
const result: Omit<GeneratedKeysType, 'signedPreKey'> = {
|
|
|
|
preKeys: [],
|
|
|
|
identityKey: identityKey.pubKey,
|
|
|
|
};
|
|
|
|
const promises = [];
|
2020-04-13 17:37:29 +00:00
|
|
|
|
2022-03-25 17:36:08 +00:00
|
|
|
for (let keyId = startId; keyId < startId + count; keyId += 1) {
|
2020-04-13 17:37:29 +00:00
|
|
|
promises.push(
|
2022-03-25 17:36:08 +00:00
|
|
|
(async () => {
|
|
|
|
const res = generatePreKey(keyId);
|
|
|
|
await store.storePreKey(ourUuid, res.keyId, res.keyPair);
|
|
|
|
result.preKeys.push({
|
|
|
|
keyId: res.keyId,
|
|
|
|
publicKey: res.keyPair.pubKey,
|
|
|
|
});
|
|
|
|
})()
|
2020-04-13 17:37:29 +00:00
|
|
|
);
|
2022-03-25 17:36:08 +00:00
|
|
|
}
|
2020-04-13 17:37:29 +00:00
|
|
|
|
2022-03-25 17:36:08 +00:00
|
|
|
const signedPreKey = (async () => {
|
|
|
|
const res = generateSignedPreKey(identityKey, signedKeyId);
|
|
|
|
await store.storeSignedPreKey(ourUuid, res.keyId, res.keyPair);
|
|
|
|
return {
|
|
|
|
keyId: res.keyId,
|
|
|
|
publicKey: res.keyPair.pubKey,
|
|
|
|
signature: res.signature,
|
|
|
|
// server.registerKeys doesn't use keyPair, confirmKeys does
|
|
|
|
keyPair: res.keyPair,
|
|
|
|
};
|
|
|
|
})();
|
2020-04-13 17:37:29 +00:00
|
|
|
|
2022-03-25 17:36:08 +00:00
|
|
|
promises.push(signedPreKey);
|
|
|
|
promises.push(storage.put('maxPreKeyId', startId + count));
|
|
|
|
promises.push(storage.put('signedKeyId', signedKeyId + 1));
|
|
|
|
|
|
|
|
await Promise.all(promises);
|
|
|
|
|
|
|
|
// This is primarily for the signed prekey summary it logs out
|
2022-09-27 16:33:56 +00:00
|
|
|
this.cleanSignedPreKeys(UUIDKind.ACI);
|
|
|
|
this.cleanSignedPreKeys(UUIDKind.PNI);
|
2022-03-25 17:36:08 +00:00
|
|
|
|
|
|
|
return {
|
|
|
|
...result,
|
|
|
|
signedPreKey: await signedPreKey,
|
|
|
|
};
|
2020-04-13 17:37:29 +00:00
|
|
|
}
|
2020-09-24 21:53:21 +00:00
|
|
|
|
2022-03-25 17:36:08 +00:00
|
|
|
async registrationDone(): Promise<void> {
|
2021-09-17 18:27:53 +00:00
|
|
|
log.info('registration done');
|
2020-04-13 17:37:29 +00:00
|
|
|
this.dispatchEvent(new Event('registration'));
|
|
|
|
}
|
2022-07-18 22:32:00 +00:00
|
|
|
|
2022-07-28 16:35:29 +00:00
|
|
|
async setPni(pni: string, keyMaterial?: PniKeyMaterialType): Promise<void> {
|
2022-07-18 22:32:00 +00:00
|
|
|
const { storage } = window.textsecure;
|
|
|
|
|
|
|
|
const oldPni = storage.user.getUuid(UUIDKind.PNI)?.toString();
|
2022-07-28 16:35:29 +00:00
|
|
|
if (oldPni === pni && !keyMaterial) {
|
2022-07-18 22:32:00 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-07-28 16:35:29 +00:00
|
|
|
log.info(`AccountManager.setPni(${pni}): updating from ${oldPni}`);
|
|
|
|
|
2022-07-18 22:32:00 +00:00
|
|
|
if (oldPni) {
|
2022-07-28 16:35:29 +00:00
|
|
|
await storage.protocol.removeOurOldPni(new UUID(oldPni));
|
2022-07-18 22:32:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
await storage.user.setPni(pni);
|
|
|
|
|
2022-07-28 16:35:29 +00:00
|
|
|
if (keyMaterial) {
|
|
|
|
await storage.protocol.updateOurPniKeyMaterial(
|
2022-08-02 01:31:24 +00:00
|
|
|
new UUID(pni),
|
|
|
|
keyMaterial
|
2022-07-28 16:35:29 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
// Intentionally not awaiting since this is processed on encrypted queue
|
|
|
|
// of MessageReceiver.
|
|
|
|
this.queueTask(async () => {
|
|
|
|
try {
|
|
|
|
const keys = await this.generateKeys(
|
|
|
|
SIGNED_KEY_GEN_BATCH_SIZE,
|
|
|
|
UUIDKind.PNI
|
|
|
|
);
|
|
|
|
await this.server.registerKeys(keys, UUIDKind.PNI);
|
|
|
|
await this.confirmKeys(keys, UUIDKind.PNI);
|
|
|
|
} catch (error) {
|
|
|
|
log.error(
|
|
|
|
'setPni: Failed to upload PNI prekeys. Moving on',
|
|
|
|
Errors.toLogFormat(error)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
// PNI has changed and credentials are no longer valid
|
|
|
|
await storage.put('groupCredentials', []);
|
|
|
|
} else {
|
|
|
|
log.warn(`AccountManager.setPni(${pni}): no key material`);
|
|
|
|
}
|
2022-07-18 22:32:00 +00:00
|
|
|
}
|
2020-04-13 17:37:29 +00:00
|
|
|
}
|