|
|
@ -37,6 +37,7 @@ NSError *EnsureDecryptError(NSError *_Nullable error, NSString *fallbackErrorDes
|
|
|
|
if (error) {
|
|
|
|
if (error) {
|
|
|
|
return error;
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
OWSCFailDebug(@"Caller should provide specific error");
|
|
|
|
return OWSErrorWithCodeDescription(OWSErrorCodeFailedToDecryptUDMessage, fallbackErrorDescription);
|
|
|
|
return OWSErrorWithCodeDescription(OWSErrorCodeFailedToDecryptUDMessage, fallbackErrorDescription);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
@ -434,89 +435,140 @@ NSError *EnsureDecryptError(NSError *_Nullable error, NSString *fallbackErrorDes
|
|
|
|
uint32_t localDeviceId = OWSDevicePrimaryDeviceId;
|
|
|
|
uint32_t localDeviceId = OWSDevicePrimaryDeviceId;
|
|
|
|
|
|
|
|
|
|
|
|
[self.dbConnection asyncReadWriteWithBlock:^(YapDatabaseReadWriteTransaction *transaction) {
|
|
|
|
[self.dbConnection asyncReadWriteWithBlock:^(YapDatabaseReadWriteTransaction *transaction) {
|
|
|
|
@try {
|
|
|
|
NSError *cipherError;
|
|
|
|
NSError *error;
|
|
|
|
SMKSecretSessionCipher *_Nullable cipher =
|
|
|
|
SMKSecretSessionCipher *_Nullable cipher =
|
|
|
|
[[SMKSecretSessionCipher alloc] initWithSessionStore:self.primaryStorage
|
|
|
|
[[SMKSecretSessionCipher alloc] initWithSessionStore:self.primaryStorage
|
|
|
|
preKeyStore:self.primaryStorage
|
|
|
|
preKeyStore:self.primaryStorage
|
|
|
|
signedPreKeyStore:self.primaryStorage
|
|
|
|
signedPreKeyStore:self.primaryStorage
|
|
|
|
identityStore:self.identityManager
|
|
|
|
identityStore:self.identityManager
|
|
|
|
error:&cipherError];
|
|
|
|
error:&error];
|
|
|
|
if (cipherError || !cipher) {
|
|
|
|
if (error || !cipher) {
|
|
|
|
OWSFailDebug(@"Could not create secret session cipher: %@", cipherError);
|
|
|
|
OWSFailDebug(@"Could not create secret session cipher: %@", error);
|
|
|
|
cipherError = EnsureDecryptError(cipherError, @"Could not create secret session cipher");
|
|
|
|
error = EnsureDecryptError(error, @"Could not create secret session cipher");
|
|
|
|
return failureBlock(cipherError);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
NSError *decryptError;
|
|
|
|
|
|
|
|
SMKDecryptResult *_Nullable decryptResult =
|
|
|
|
|
|
|
|
[cipher throwswrapped_decryptMessageWithCertificateValidator:certificateValidator
|
|
|
|
|
|
|
|
cipherTextData:encryptedData
|
|
|
|
|
|
|
|
timestamp:serverTimestamp
|
|
|
|
|
|
|
|
localRecipientId:localRecipientId
|
|
|
|
|
|
|
|
localDeviceId:localDeviceId
|
|
|
|
|
|
|
|
protocolContext:transaction
|
|
|
|
|
|
|
|
error:&decryptError];
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (!decryptResult) {
|
|
|
|
|
|
|
|
if (!decryptError) {
|
|
|
|
|
|
|
|
OWSFailDebug(@"Caller should provide specific error");
|
|
|
|
|
|
|
|
NSError *error = OWSErrorWithCodeDescription(
|
|
|
|
|
|
|
|
OWSErrorCodeFailedToDecryptUDMessage, @"Could not decrypt UD message");
|
|
|
|
return failureBlock(error);
|
|
|
|
return failureBlock(error);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
SMKDecryptResult *_Nullable decryptResult =
|
|
|
|
// Decrypt Failure Part 1: Unwrap failure details
|
|
|
|
[cipher throwswrapped_decryptMessageWithCertificateValidator:certificateValidator
|
|
|
|
|
|
|
|
cipherTextData:encryptedData
|
|
|
|
|
|
|
|
timestamp:serverTimestamp
|
|
|
|
|
|
|
|
localRecipientId:localRecipientId
|
|
|
|
|
|
|
|
localDeviceId:localDeviceId
|
|
|
|
|
|
|
|
protocolContext:transaction
|
|
|
|
|
|
|
|
error:&error];
|
|
|
|
|
|
|
|
SCKRaiseIfExceptionWrapperError(error);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (error || !decryptResult) {
|
|
|
|
|
|
|
|
if ([error.domain isEqualToString:@"SignalMetadataKit.SMKSecretSessionCipherError"]
|
|
|
|
|
|
|
|
&& error.code == SMKSecretSessionCipherErrorSelfSentMessage) {
|
|
|
|
|
|
|
|
// Self-sent messages can be safely discarded.
|
|
|
|
|
|
|
|
return failureBlock(error);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
OWSFailDebug(@"Could not decrypt UD message: %@", error);
|
|
|
|
NSError *_Nullable underlyingError;
|
|
|
|
error = EnsureDecryptError(error, @"Could not decrypt UD message");
|
|
|
|
SSKProtoEnvelope *_Nullable identifiedEnvelope;
|
|
|
|
return failureBlock(error);
|
|
|
|
|
|
|
|
}
|
|
|
|
if (![decryptError.domain isEqualToString:@"SignalMetadataKit.SecretSessionKnownSenderError"]) {
|
|
|
|
|
|
|
|
underlyingError = decryptError;
|
|
|
|
|
|
|
|
identifiedEnvelope = envelope;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
underlyingError = decryptError.userInfo[NSUnderlyingErrorKey];
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
NSString *senderRecipientId
|
|
|
|
|
|
|
|
= decryptError.userInfo[SecretSessionKnownSenderError.kSenderRecipientIdKey];
|
|
|
|
|
|
|
|
OWSAssert(senderRecipientId);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
NSNumber *senderDeviceId = decryptError.userInfo[SecretSessionKnownSenderError.kSenderDeviceIdKey];
|
|
|
|
|
|
|
|
OWSAssert(senderDeviceId);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
SSKProtoEnvelopeBuilder *identifiedEnvelopeBuilder = envelope.asBuilder;
|
|
|
|
|
|
|
|
identifiedEnvelopeBuilder.source = senderRecipientId;
|
|
|
|
|
|
|
|
identifiedEnvelopeBuilder.sourceDevice = senderDeviceId.unsignedIntValue;
|
|
|
|
|
|
|
|
NSError *identifiedEnvelopeBuilderError;
|
|
|
|
|
|
|
|
|
|
|
|
if (decryptResult.messageType == SMKMessageTypePrekey) {
|
|
|
|
identifiedEnvelope = [identifiedEnvelopeBuilder buildAndReturnError:&identifiedEnvelopeBuilderError];
|
|
|
|
[TSPreKeyManager checkPreKeys];
|
|
|
|
if (identifiedEnvelopeBuilderError) {
|
|
|
|
|
|
|
|
OWSFailDebug(@"failure identifiedEnvelopeBuilderError: %@", identifiedEnvelopeBuilderError);
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
OWSAssert(underlyingError);
|
|
|
|
|
|
|
|
OWSAssert(identifiedEnvelope);
|
|
|
|
|
|
|
|
|
|
|
|
NSString *source = decryptResult.senderRecipientId;
|
|
|
|
NSException *_Nullable underlyingException;
|
|
|
|
if (source.length < 1 || !source.isValidE164) {
|
|
|
|
if ([underlyingError.domain isEqualToString:SCKExceptionWrapperErrorDomain]
|
|
|
|
NSString *errorDescription = @"Invalid UD sender.";
|
|
|
|
&& underlyingError.code == SCKExceptionWrapperErrorThrown) {
|
|
|
|
OWSFailDebug(@"%@", errorDescription);
|
|
|
|
|
|
|
|
NSError *error = OWSErrorWithCodeDescription(OWSErrorCodeFailedToDecryptUDMessage, errorDescription);
|
|
|
|
underlyingException = underlyingError.userInfo[SCKExceptionWrapperUnderlyingExceptionKey];
|
|
|
|
return failureBlock(error);
|
|
|
|
OWSAssert(underlyingException);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
long sourceDeviceId = decryptResult.senderDeviceId;
|
|
|
|
// Decrypt Failure Part 2: Handle unwrapped failure details
|
|
|
|
if (sourceDeviceId < 1 || sourceDeviceId > UINT32_MAX) {
|
|
|
|
|
|
|
|
NSString *errorDescription = @"Invalid UD sender device id.";
|
|
|
|
if (underlyingException) {
|
|
|
|
OWSFailDebug(@"%@", errorDescription);
|
|
|
|
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
|
|
|
|
NSError *error = OWSErrorWithCodeDescription(OWSErrorCodeFailedToDecryptUDMessage, errorDescription);
|
|
|
|
[self processException:underlyingException envelope:identifiedEnvelope];
|
|
|
|
return failureBlock(error);
|
|
|
|
NSString *errorDescription = [NSString
|
|
|
|
|
|
|
|
stringWithFormat:@"Exception while decrypting ud message: %@", underlyingException.description];
|
|
|
|
|
|
|
|
OWSLogError(@"%@", errorDescription);
|
|
|
|
|
|
|
|
NSError *error = OWSErrorWithCodeDescription(OWSErrorCodeFailedToDecryptMessage, errorDescription);
|
|
|
|
|
|
|
|
failureBlock(error);
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
NSData *plaintextData = [decryptResult.paddedPayload removePadding];
|
|
|
|
|
|
|
|
|
|
|
|
if ([underlyingError.domain isEqualToString:@"SignalMetadataKit.SMKSecretSessionCipherError"]
|
|
|
|
SSKProtoEnvelopeBuilder *envelopeBuilder = [envelope asBuilder];
|
|
|
|
&& underlyingError.code == SMKSecretSessionCipherErrorSelfSentMessage) {
|
|
|
|
[envelopeBuilder setSource:source];
|
|
|
|
// Self-sent messages can be safely discarded.
|
|
|
|
[envelopeBuilder setSourceDevice:(uint32_t)sourceDeviceId];
|
|
|
|
failureBlock(underlyingError);
|
|
|
|
NSData *_Nullable newEnvelopeData = [envelopeBuilder buildSerializedDataAndReturnError:&error];
|
|
|
|
return;
|
|
|
|
if (error || !newEnvelopeData) {
|
|
|
|
|
|
|
|
OWSFailDebug(@"Could not update UD envelope data: %@", error);
|
|
|
|
|
|
|
|
error = EnsureDecryptError(error, @"Could not update UD envelope data");
|
|
|
|
|
|
|
|
return failureBlock(error);
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
OWSMessageDecryptResult *result = [OWSMessageDecryptResult resultWithEnvelopeData:newEnvelopeData
|
|
|
|
OWSFailDebug(@"Could not decrypt UD message: %@", underlyingError);
|
|
|
|
plaintextData:plaintextData
|
|
|
|
failureBlock(underlyingError);
|
|
|
|
source:source
|
|
|
|
return;
|
|
|
|
sourceDevice:(uint32_t)sourceDeviceId
|
|
|
|
}
|
|
|
|
isUDMessage:YES];
|
|
|
|
|
|
|
|
successBlock(result, transaction);
|
|
|
|
if (decryptResult.messageType == SMKMessageTypePrekey) {
|
|
|
|
} @catch (NSException *exception) {
|
|
|
|
[TSPreKeyManager checkPreKeys];
|
|
|
|
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
|
|
|
|
}
|
|
|
|
[self processException:exception envelope:envelope];
|
|
|
|
|
|
|
|
NSString *errorDescription =
|
|
|
|
NSString *source = decryptResult.senderRecipientId;
|
|
|
|
[NSString stringWithFormat:@"Exception while decrypting ud message: %@", exception.description];
|
|
|
|
if (source.length < 1 || !source.isValidE164) {
|
|
|
|
OWSLogError(@"%@", errorDescription);
|
|
|
|
NSString *errorDescription = @"Invalid UD sender.";
|
|
|
|
NSError *error = OWSErrorWithCodeDescription(OWSErrorCodeFailedToDecryptMessage, errorDescription);
|
|
|
|
OWSFailDebug(@"%@", errorDescription);
|
|
|
|
failureBlock(error);
|
|
|
|
NSError *error = OWSErrorWithCodeDescription(OWSErrorCodeFailedToDecryptUDMessage, errorDescription);
|
|
|
|
});
|
|
|
|
return failureBlock(error);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
long sourceDeviceId = decryptResult.senderDeviceId;
|
|
|
|
|
|
|
|
if (sourceDeviceId < 1 || sourceDeviceId > UINT32_MAX) {
|
|
|
|
|
|
|
|
NSString *errorDescription = @"Invalid UD sender device id.";
|
|
|
|
|
|
|
|
OWSFailDebug(@"%@", errorDescription);
|
|
|
|
|
|
|
|
NSError *error = OWSErrorWithCodeDescription(OWSErrorCodeFailedToDecryptUDMessage, errorDescription);
|
|
|
|
|
|
|
|
return failureBlock(error);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
NSData *plaintextData = [decryptResult.paddedPayload removePadding];
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
SSKProtoEnvelopeBuilder *envelopeBuilder = [envelope asBuilder];
|
|
|
|
|
|
|
|
[envelopeBuilder setSource:source];
|
|
|
|
|
|
|
|
[envelopeBuilder setSourceDevice:(uint32_t)sourceDeviceId];
|
|
|
|
|
|
|
|
NSError *envelopeBuilderError;
|
|
|
|
|
|
|
|
NSData *_Nullable newEnvelopeData = [envelopeBuilder buildSerializedDataAndReturnError:&envelopeBuilderError];
|
|
|
|
|
|
|
|
if (envelopeBuilderError || !newEnvelopeData) {
|
|
|
|
|
|
|
|
OWSFailDebug(@"Could not update UD envelope data: %@", envelopeBuilderError);
|
|
|
|
|
|
|
|
NSError *error = EnsureDecryptError(envelopeBuilderError, @"Could not update UD envelope data");
|
|
|
|
|
|
|
|
return failureBlock(error);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
OWSMessageDecryptResult *result = [OWSMessageDecryptResult resultWithEnvelopeData:newEnvelopeData
|
|
|
|
|
|
|
|
plaintextData:plaintextData
|
|
|
|
|
|
|
|
source:source
|
|
|
|
|
|
|
|
sourceDevice:(uint32_t)sourceDeviceId
|
|
|
|
|
|
|
|
isUDMessage:YES];
|
|
|
|
|
|
|
|
successBlock(result, transaction);
|
|
|
|
}];
|
|
|
|
}];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|