2017-01-23 00:09:38 +01:00
|
|
|
//
|
2018-01-11 16:25:13 +01:00
|
|
|
// Copyright (c) 2018 Open Whisper Systems. All rights reserved.
|
2017-01-23 00:09:38 +01:00
|
|
|
//
|
2016-10-08 01:17:38 +02:00
|
|
|
|
|
|
|
#import "OWSMessageSender.h"
|
2017-11-29 21:27:19 +01:00
|
|
|
#import "AppContext.h"
|
2017-06-08 05:21:25 +02:00
|
|
|
#import "NSData+keyVersionByte.h"
|
2016-10-14 23:00:29 +02:00
|
|
|
#import "NSData+messagePadding.h"
|
2018-04-04 22:26:41 +02:00
|
|
|
#import "NSError+MessageSending.h"
|
2017-12-15 19:03:03 +01:00
|
|
|
#import "OWSBackgroundTask.h"
|
2017-04-03 20:42:04 +02:00
|
|
|
#import "OWSBlockingManager.h"
|
2018-05-03 17:31:06 +02:00
|
|
|
#import "OWSContact.h"
|
2017-02-16 00:32:27 +01:00
|
|
|
#import "OWSDevice.h"
|
2016-10-14 23:00:29 +02:00
|
|
|
#import "OWSDisappearingMessagesJob.h"
|
2018-08-28 21:22:47 +02:00
|
|
|
#import "OWSDispatch.h"
|
2016-10-08 01:17:38 +02:00
|
|
|
#import "OWSError.h"
|
2017-06-06 20:12:50 +02:00
|
|
|
#import "OWSIdentityManager.h"
|
2016-10-14 23:00:29 +02:00
|
|
|
#import "OWSMessageServiceParams.h"
|
2018-04-04 22:26:41 +02:00
|
|
|
#import "OWSOperation.h"
|
2016-10-14 23:00:29 +02:00
|
|
|
#import "OWSOutgoingSentMessageTranscript.h"
|
|
|
|
#import "OWSOutgoingSyncMessage.h"
|
2018-03-05 15:30:58 +01:00
|
|
|
#import "OWSPrimaryStorage+PreKeyStore.h"
|
|
|
|
#import "OWSPrimaryStorage+SignedPreKeyStore.h"
|
|
|
|
#import "OWSPrimaryStorage+sessionStore.h"
|
|
|
|
#import "OWSPrimaryStorage.h"
|
2018-03-02 04:29:59 +01:00
|
|
|
#import "OWSRequestFactory.h"
|
2018-04-04 22:26:41 +02:00
|
|
|
#import "OWSUploadOperation.h"
|
2016-10-14 23:00:29 +02:00
|
|
|
#import "PreKeyBundle+jsonDict.h"
|
2018-09-20 18:52:43 +02:00
|
|
|
#import "SSKEnvironment.h"
|
2016-10-14 23:00:29 +02:00
|
|
|
#import "SignalRecipient.h"
|
|
|
|
#import "TSAccountManager.h"
|
|
|
|
#import "TSAttachmentStream.h"
|
|
|
|
#import "TSContactThread.h"
|
|
|
|
#import "TSGroupThread.h"
|
|
|
|
#import "TSIncomingMessage.h"
|
|
|
|
#import "TSInfoMessage.h"
|
|
|
|
#import "TSInvalidIdentityKeySendingErrorMessage.h"
|
2016-10-08 01:17:38 +02:00
|
|
|
#import "TSNetworkManager.h"
|
|
|
|
#import "TSOutgoingMessage.h"
|
2017-02-10 19:20:11 +01:00
|
|
|
#import "TSPreKeyManager.h"
|
2018-04-04 22:26:41 +02:00
|
|
|
#import "TSQuotedMessage.h"
|
2018-10-03 14:55:14 +02:00
|
|
|
#import "TSRequest.h"
|
2018-05-18 19:55:22 +02:00
|
|
|
#import "TSSocketManager.h"
|
2016-10-08 01:17:38 +02:00
|
|
|
#import "TSThread.h"
|
2016-10-14 23:00:29 +02:00
|
|
|
#import <AxolotlKit/AxolotlExceptions.h>
|
|
|
|
#import <AxolotlKit/CipherMessage.h>
|
|
|
|
#import <AxolotlKit/PreKeyBundle.h>
|
|
|
|
#import <AxolotlKit/SessionBuilder.h>
|
|
|
|
#import <AxolotlKit/SessionCipher.h>
|
2018-07-20 21:22:51 +02:00
|
|
|
#import <PromiseKit/AnyPromise.h>
|
2018-10-03 14:55:14 +02:00
|
|
|
#import <SignalCoreKit/NSData+OWS.h>
|
2018-09-21 21:41:10 +02:00
|
|
|
#import <SignalCoreKit/NSDate+OWS.h>
|
|
|
|
#import <SignalCoreKit/Threading.h>
|
2018-10-03 14:55:14 +02:00
|
|
|
#import <SignalMetadataKit/SignalMetadataKit-Swift.h>
|
2018-07-20 21:22:51 +02:00
|
|
|
#import <SignalServiceKit/SignalServiceKit-Swift.h>
|
2016-10-08 01:17:38 +02:00
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
|
2018-04-11 21:21:17 +02:00
|
|
|
const NSUInteger kOversizeTextMessageSizeThreshold = 2 * 1024;
|
2018-01-11 23:41:13 +01:00
|
|
|
|
2018-10-04 20:39:40 +02:00
|
|
|
NSError *SSKEnsureError(NSError *_Nullable error, OWSErrorCode fallbackCode, NSString *fallbackErrorDescription)
|
|
|
|
{
|
|
|
|
if (error) {
|
|
|
|
return error;
|
|
|
|
}
|
2018-10-05 18:53:54 +02:00
|
|
|
OWSCFailDebug(@"Using fallback error.");
|
|
|
|
return OWSErrorWithCodeDescription(fallbackCode, fallbackErrorDescription);
|
2018-10-04 20:39:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#pragma mark -
|
|
|
|
|
2017-04-07 01:11:04 +02:00
|
|
|
void AssertIsOnSendingQueue()
|
|
|
|
{
|
2017-04-07 18:46:42 +02:00
|
|
|
#ifdef DEBUG
|
2017-12-01 23:38:41 +01:00
|
|
|
if (@available(iOS 10.0, *)) {
|
2017-04-07 01:11:04 +02:00
|
|
|
dispatch_assert_queue([OWSDispatch sendingQueue]);
|
|
|
|
} // else, skip assert as it's a development convenience.
|
2017-04-07 18:46:42 +02:00
|
|
|
#endif
|
2017-04-07 01:11:04 +02:00
|
|
|
}
|
|
|
|
|
2017-04-14 16:25:52 +02:00
|
|
|
#pragma mark -
|
|
|
|
|
2017-03-17 17:26:25 +01:00
|
|
|
/**
|
|
|
|
* OWSSendMessageOperation encapsulates all the work associated with sending a message, e.g. uploading attachments,
|
2017-03-20 19:57:05 +01:00
|
|
|
* getting proper keys, and retrying upon failure.
|
2017-03-17 17:26:25 +01:00
|
|
|
*
|
|
|
|
* Used by `OWSMessageSender` to serialize message sending, ensuring that messages are emitted in the order they
|
|
|
|
* were sent.
|
|
|
|
*/
|
2018-04-04 22:26:41 +02:00
|
|
|
@interface OWSSendMessageOperation : OWSOperation
|
2017-03-17 17:26:25 +01:00
|
|
|
|
|
|
|
- (instancetype)init NS_UNAVAILABLE;
|
|
|
|
- (instancetype)initWithMessage:(TSOutgoingMessage *)message
|
|
|
|
messageSender:(OWSMessageSender *)messageSender
|
2018-04-04 22:26:41 +02:00
|
|
|
dbConnection:(YapDatabaseConnection *)dbConnection
|
|
|
|
success:(void (^)(void))aSuccessHandler
|
2018-07-16 19:11:00 +02:00
|
|
|
failure:(void (^)(NSError * error))aFailureHandler NS_DESIGNATED_INITIALIZER;
|
2017-03-17 17:26:25 +01:00
|
|
|
|
|
|
|
@end
|
|
|
|
|
2017-04-10 16:35:43 +02:00
|
|
|
#pragma mark -
|
|
|
|
|
2017-03-17 17:26:25 +01:00
|
|
|
@interface OWSMessageSender (OWSSendMessageOperation)
|
|
|
|
|
2018-04-04 22:26:41 +02:00
|
|
|
- (void)sendMessageToService:(TSOutgoingMessage *)message
|
2017-11-08 20:04:51 +01:00
|
|
|
success:(void (^)(void))successHandler
|
2017-04-05 01:44:14 +02:00
|
|
|
failure:(RetryableFailureHandler)failureHandler;
|
2017-03-17 17:26:25 +01:00
|
|
|
|
|
|
|
@end
|
|
|
|
|
2017-04-10 16:35:43 +02:00
|
|
|
#pragma mark -
|
|
|
|
|
2017-03-17 17:26:25 +01:00
|
|
|
@interface OWSSendMessageOperation ()
|
|
|
|
|
|
|
|
@property (nonatomic, readonly) TSOutgoingMessage *message;
|
|
|
|
@property (nonatomic, readonly) OWSMessageSender *messageSender;
|
2018-04-04 22:26:41 +02:00
|
|
|
@property (nonatomic, readonly) YapDatabaseConnection *dbConnection;
|
2017-11-15 12:39:10 +01:00
|
|
|
@property (nonatomic, readonly) void (^successHandler)(void);
|
2018-07-16 19:11:00 +02:00
|
|
|
@property (nonatomic, readonly) void (^failureHandler)(NSError * error);
|
2017-03-17 17:26:25 +01:00
|
|
|
|
|
|
|
@end
|
|
|
|
|
2017-04-10 16:35:43 +02:00
|
|
|
#pragma mark -
|
|
|
|
|
2017-03-17 17:26:25 +01:00
|
|
|
@implementation OWSSendMessageOperation
|
|
|
|
|
|
|
|
- (instancetype)initWithMessage:(TSOutgoingMessage *)message
|
|
|
|
messageSender:(OWSMessageSender *)messageSender
|
2018-04-04 22:26:41 +02:00
|
|
|
dbConnection:(YapDatabaseConnection *)dbConnection
|
|
|
|
success:(void (^)(void))successHandler
|
2018-07-16 19:11:00 +02:00
|
|
|
failure:(void (^)(NSError * error))failureHandler
|
2017-03-17 17:26:25 +01:00
|
|
|
{
|
|
|
|
self = [super init];
|
|
|
|
if (!self) {
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
2018-04-04 22:26:41 +02:00
|
|
|
self.remainingRetries = 6;
|
2017-03-17 17:26:25 +01:00
|
|
|
_message = message;
|
|
|
|
_messageSender = messageSender;
|
2018-04-04 22:26:41 +02:00
|
|
|
_dbConnection = dbConnection;
|
|
|
|
_successHandler = successHandler;
|
|
|
|
_failureHandler = failureHandler;
|
2017-03-17 17:26:25 +01:00
|
|
|
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
2018-04-04 22:26:41 +02:00
|
|
|
#pragma mark - OWSOperation overrides
|
2017-03-17 17:26:25 +01:00
|
|
|
|
2018-04-04 22:26:41 +02:00
|
|
|
- (nullable NSError *)checkForPreconditionError
|
2017-03-17 17:26:25 +01:00
|
|
|
{
|
2018-07-18 22:46:46 +02:00
|
|
|
NSError *_Nullable error = [super checkForPreconditionError];
|
|
|
|
if (error) {
|
|
|
|
return error;
|
2018-04-04 22:26:41 +02:00
|
|
|
}
|
2017-03-17 17:26:25 +01:00
|
|
|
|
2018-04-04 22:26:41 +02:00
|
|
|
// Sanity check preconditions
|
|
|
|
if (self.message.hasAttachments) {
|
2018-07-16 19:11:00 +02:00
|
|
|
[self.dbConnection readWithBlock:^(YapDatabaseReadTransaction * transaction) {
|
2018-04-04 22:26:41 +02:00
|
|
|
TSAttachmentStream *attachmentStream
|
|
|
|
= (TSAttachmentStream *)[self.message attachmentWithTransaction:transaction];
|
2018-09-06 19:01:24 +02:00
|
|
|
OWSAssertDebug(attachmentStream);
|
|
|
|
OWSAssertDebug([attachmentStream isKindOfClass:[TSAttachmentStream class]]);
|
|
|
|
OWSAssertDebug(attachmentStream.serverId);
|
|
|
|
OWSAssertDebug(attachmentStream.isUploaded);
|
2018-04-04 22:26:41 +02:00
|
|
|
}];
|
|
|
|
}
|
2017-03-17 17:26:25 +01:00
|
|
|
|
2018-04-04 22:26:41 +02:00
|
|
|
return nil;
|
|
|
|
}
|
2017-03-17 17:26:25 +01:00
|
|
|
|
2018-04-04 22:26:41 +02:00
|
|
|
- (void)run
|
2017-03-17 17:26:25 +01:00
|
|
|
{
|
2017-11-14 19:41:01 +01:00
|
|
|
// If the message has been deleted, abort send.
|
2017-11-15 23:53:16 +01:00
|
|
|
if (self.message.shouldBeSaved && ![TSOutgoingMessage fetchObjectWithUniqueID:self.message.uniqueId]) {
|
2018-08-27 18:51:32 +02:00
|
|
|
OWSLogInfo(@"aborting message send; message deleted.");
|
2017-11-14 19:41:01 +01:00
|
|
|
NSError *error = OWSErrorWithCodeDescription(
|
|
|
|
OWSErrorCodeMessageDeletedBeforeSent, @"Message was deleted before it could be sent.");
|
2018-04-04 22:26:41 +02:00
|
|
|
error.isFatal = YES;
|
|
|
|
[self reportError:error];
|
2017-11-14 19:41:01 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-04-04 22:26:41 +02:00
|
|
|
[self.messageSender sendMessageToService:self.message
|
|
|
|
success:^{
|
|
|
|
[self reportSuccess];
|
2017-04-05 01:44:14 +02:00
|
|
|
}
|
2018-04-04 22:26:41 +02:00
|
|
|
failure:^(NSError *error) {
|
|
|
|
[self reportError:error];
|
|
|
|
}];
|
2017-03-17 17:26:25 +01:00
|
|
|
}
|
|
|
|
|
2018-04-04 22:26:41 +02:00
|
|
|
- (void)didSucceed
|
2017-03-17 17:26:25 +01:00
|
|
|
{
|
2018-04-30 16:21:58 +02:00
|
|
|
if (self.message.messageState != TSOutgoingMessageStateSent) {
|
2018-08-27 18:51:32 +02:00
|
|
|
OWSFailDebug(@"unexpected message status: %@", self.message.statusDescription);
|
2018-04-30 16:21:58 +02:00
|
|
|
}
|
2018-04-23 16:30:51 +02:00
|
|
|
|
2018-04-04 22:26:41 +02:00
|
|
|
self.successHandler();
|
|
|
|
}
|
2017-06-17 19:41:29 +02:00
|
|
|
|
2018-04-04 22:26:41 +02:00
|
|
|
- (void)didFailWithError:(NSError *)error
|
|
|
|
{
|
|
|
|
[self.message updateWithSendingError:error];
|
2018-08-27 18:00:28 +02:00
|
|
|
|
2018-08-27 18:51:32 +02:00
|
|
|
OWSLogDebug(@"failed with error: %@", error);
|
2018-04-04 22:26:41 +02:00
|
|
|
self.failureHandler(error);
|
2017-03-17 17:26:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
2018-10-03 14:55:14 +02:00
|
|
|
#pragma mark -
|
|
|
|
|
2016-10-14 23:00:29 +02:00
|
|
|
NSString *const OWSMessageSenderInvalidDeviceException = @"InvalidDeviceException";
|
2016-11-10 15:59:07 +01:00
|
|
|
NSString *const OWSMessageSenderRateLimitedException = @"RateLimitedException";
|
2016-10-14 23:00:29 +02:00
|
|
|
|
2016-10-08 01:17:38 +02:00
|
|
|
@interface OWSMessageSender ()
|
|
|
|
|
2018-03-05 15:30:58 +01:00
|
|
|
@property (nonatomic, readonly) OWSPrimaryStorage *primaryStorage;
|
2016-10-14 23:00:29 +02:00
|
|
|
@property (nonatomic, readonly) YapDatabaseConnection *dbConnection;
|
2017-03-23 19:35:30 +01:00
|
|
|
@property (atomic, readonly) NSMutableDictionary<NSString *, NSOperationQueue *> *sendingQueueMap;
|
2016-10-08 01:17:38 +02:00
|
|
|
|
|
|
|
@end
|
|
|
|
|
2018-10-03 14:55:14 +02:00
|
|
|
#pragma mark -
|
|
|
|
|
2016-10-08 01:17:38 +02:00
|
|
|
@implementation OWSMessageSender
|
|
|
|
|
2018-09-20 18:52:43 +02:00
|
|
|
- (instancetype)initWithPrimaryStorage:(OWSPrimaryStorage *)primaryStorage
|
2016-10-08 01:17:38 +02:00
|
|
|
{
|
|
|
|
self = [super init];
|
|
|
|
if (!self) {
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
2018-03-05 15:30:58 +01:00
|
|
|
_primaryStorage = primaryStorage;
|
2017-03-23 17:41:15 +01:00
|
|
|
_sendingQueueMap = [NSMutableDictionary new];
|
2018-03-05 15:30:58 +01:00
|
|
|
_dbConnection = primaryStorage.newDatabaseConnection;
|
2016-10-14 23:00:29 +02:00
|
|
|
|
2017-04-01 00:45:46 +02:00
|
|
|
OWSSingletonAssert();
|
|
|
|
|
2016-10-08 01:17:38 +02:00
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
2018-10-05 16:32:32 +02:00
|
|
|
#pragma mark - Dependencies
|
2018-10-03 14:55:14 +02:00
|
|
|
|
2018-09-20 18:52:43 +02:00
|
|
|
- (id<ContactsManagerProtocol>)contactsManager
|
2017-04-01 22:47:16 +02:00
|
|
|
{
|
2018-09-20 18:52:43 +02:00
|
|
|
OWSAssertDebug(SSKEnvironment.shared.contactsManager);
|
2017-04-01 22:47:16 +02:00
|
|
|
|
2018-09-20 18:52:43 +02:00
|
|
|
return SSKEnvironment.shared.contactsManager;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (OWSBlockingManager *)blockingManager
|
|
|
|
{
|
|
|
|
OWSAssertDebug(SSKEnvironment.shared.blockingManager);
|
|
|
|
|
|
|
|
return SSKEnvironment.shared.blockingManager;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (TSNetworkManager *)networkManager
|
|
|
|
{
|
|
|
|
OWSAssertDebug(SSKEnvironment.shared.networkManager);
|
|
|
|
|
|
|
|
return SSKEnvironment.shared.networkManager;
|
2017-04-01 22:47:16 +02:00
|
|
|
}
|
|
|
|
|
2018-10-03 14:55:14 +02:00
|
|
|
- (id<OWSUDManager>)udManager
|
|
|
|
{
|
|
|
|
OWSAssertDebug(SSKEnvironment.shared.udManager);
|
|
|
|
|
|
|
|
return SSKEnvironment.shared.udManager;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (TSAccountManager *)tsAccountManager
|
|
|
|
{
|
|
|
|
return TSAccountManager.sharedInstance;
|
|
|
|
}
|
|
|
|
|
2018-10-03 23:04:41 +02:00
|
|
|
- (OWSIdentityManager *)identityManager
|
|
|
|
{
|
|
|
|
return SSKEnvironment.shared.identityManager;
|
|
|
|
}
|
|
|
|
|
2018-10-03 14:55:14 +02:00
|
|
|
#pragma mark -
|
|
|
|
|
2017-03-23 17:41:15 +01:00
|
|
|
- (NSOperationQueue *)sendingQueueForMessage:(TSOutgoingMessage *)message
|
|
|
|
{
|
2018-09-06 19:01:24 +02:00
|
|
|
OWSAssertDebug(message);
|
2017-03-23 17:41:15 +01:00
|
|
|
|
2018-04-04 22:26:41 +02:00
|
|
|
|
2017-03-23 17:41:15 +01:00
|
|
|
NSString *kDefaultQueueKey = @"kDefaultQueueKey";
|
|
|
|
NSString *queueKey = message.uniqueThreadId ?: kDefaultQueueKey;
|
2018-09-06 19:01:24 +02:00
|
|
|
OWSAssertDebug(queueKey.length > 0);
|
2017-03-23 17:41:15 +01:00
|
|
|
|
2018-04-04 22:26:41 +02:00
|
|
|
if ([kDefaultQueueKey isEqualToString:queueKey]) {
|
|
|
|
// when do we get here?
|
2018-08-27 18:51:32 +02:00
|
|
|
OWSLogDebug(@"using default message queue");
|
2018-04-04 22:26:41 +02:00
|
|
|
}
|
|
|
|
|
2017-03-23 17:41:15 +01:00
|
|
|
@synchronized(self)
|
|
|
|
{
|
|
|
|
NSOperationQueue *sendingQueue = self.sendingQueueMap[queueKey];
|
|
|
|
|
|
|
|
if (!sendingQueue) {
|
|
|
|
sendingQueue = [NSOperationQueue new];
|
|
|
|
sendingQueue.qualityOfService = NSOperationQualityOfServiceUserInitiated;
|
|
|
|
sendingQueue.maxConcurrentOperationCount = 1;
|
2018-09-14 20:02:17 +02:00
|
|
|
sendingQueue.name = [NSString stringWithFormat:@"%@:%@", self.logTag, queueKey];
|
2017-03-23 17:41:15 +01:00
|
|
|
self.sendingQueueMap[queueKey] = sendingQueue;
|
|
|
|
}
|
|
|
|
|
|
|
|
return sendingQueue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-15 19:21:31 +01:00
|
|
|
- (void)enqueueMessage:(TSOutgoingMessage *)message
|
|
|
|
success:(void (^)(void))successHandler
|
|
|
|
failure:(void (^)(NSError *error))failureHandler
|
2017-03-17 17:26:25 +01:00
|
|
|
{
|
2018-09-06 19:01:24 +02:00
|
|
|
OWSAssertDebug(message);
|
2018-01-11 23:41:13 +01:00
|
|
|
if (message.body.length > 0) {
|
2018-09-06 19:01:24 +02:00
|
|
|
OWSAssertDebug([message.body lengthOfBytesUsingEncoding:NSUTF8StringEncoding] <= kOversizeTextMessageSizeThreshold);
|
2018-01-11 23:41:13 +01:00
|
|
|
}
|
2017-03-20 20:23:41 +01:00
|
|
|
|
2017-09-21 17:55:25 +02:00
|
|
|
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
|
2018-04-09 16:42:47 +02:00
|
|
|
|
|
|
|
__block NSArray<TSAttachmentStream *> *quotedThumbnailAttachments = @[];
|
2018-05-03 17:31:06 +02:00
|
|
|
__block TSAttachmentStream *_Nullable contactShareAvatarAttachment;
|
2018-04-09 16:42:47 +02:00
|
|
|
|
2017-09-21 17:55:25 +02:00
|
|
|
// This method will use a read/write transaction. This transaction
|
|
|
|
// will block until any open read/write transactions are complete.
|
|
|
|
//
|
|
|
|
// That's key - we don't want to send any messages in response
|
|
|
|
// to an incoming message until processing of that batch of messages
|
2017-09-21 23:25:13 +02:00
|
|
|
// is complete. For example, we wouldn't want to auto-reply to a
|
|
|
|
// group info request before that group info request's batch was
|
|
|
|
// finished processing. Otherwise, we might receive a delivery
|
|
|
|
// notice for a group update we hadn't yet saved to the db.
|
|
|
|
//
|
|
|
|
// So we're using YDB behavior to ensure this invariant, which is a bit
|
|
|
|
// unorthodox.
|
2017-11-15 12:39:10 +01:00
|
|
|
[self.dbConnection readWriteWithBlock:^(YapDatabaseReadWriteTransaction *transaction) {
|
2018-04-09 16:42:47 +02:00
|
|
|
if (message.quotedMessage) {
|
|
|
|
quotedThumbnailAttachments =
|
|
|
|
[message.quotedMessage createThumbnailAttachmentsIfNecessaryWithTransaction:transaction];
|
|
|
|
}
|
|
|
|
|
2018-05-03 17:31:06 +02:00
|
|
|
if (message.contactShare.avatarAttachmentId != nil) {
|
|
|
|
TSAttachment *avatarAttachment = [message.contactShare avatarAttachmentWithTransaction:transaction];
|
|
|
|
if ([avatarAttachment isKindOfClass:[TSAttachmentStream class]]) {
|
|
|
|
contactShareAvatarAttachment = (TSAttachmentStream *)avatarAttachment;
|
|
|
|
} else {
|
2018-08-27 18:51:32 +02:00
|
|
|
OWSFailDebug(@"unexpected avatarAttachment: %@", avatarAttachment);
|
2018-05-03 17:31:06 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-15 12:39:10 +01:00
|
|
|
// All outgoing messages should be saved at the time they are enqueued.
|
|
|
|
[message saveWithTransaction:transaction];
|
2018-04-23 16:30:51 +02:00
|
|
|
// When we start a message send, all "failed" recipients should be marked as "sending".
|
|
|
|
[message updateWithMarkingAllUnsentRecipientsAsSendingWithTransaction:transaction];
|
2017-11-15 12:39:10 +01:00
|
|
|
}];
|
2017-03-17 20:38:22 +01:00
|
|
|
|
2018-04-04 22:26:41 +02:00
|
|
|
NSOperationQueue *sendingQueue = [self sendingQueueForMessage:message];
|
2017-09-21 17:55:25 +02:00
|
|
|
OWSSendMessageOperation *sendMessageOperation =
|
|
|
|
[[OWSSendMessageOperation alloc] initWithMessage:message
|
|
|
|
messageSender:self
|
2018-04-04 22:26:41 +02:00
|
|
|
dbConnection:self.dbConnection
|
2017-09-21 17:55:25 +02:00
|
|
|
success:successHandler
|
|
|
|
failure:failureHandler];
|
2018-05-03 17:31:06 +02:00
|
|
|
|
|
|
|
// TODO de-dupe attachment enque logic.
|
2018-04-04 22:26:41 +02:00
|
|
|
if (message.hasAttachments) {
|
|
|
|
OWSUploadOperation *uploadAttachmentOperation =
|
|
|
|
[[OWSUploadOperation alloc] initWithAttachmentId:message.attachmentIds.firstObject
|
|
|
|
dbConnection:self.dbConnection];
|
|
|
|
[sendMessageOperation addDependency:uploadAttachmentOperation];
|
|
|
|
[sendingQueue addOperation:uploadAttachmentOperation];
|
2017-04-10 16:35:43 +02:00
|
|
|
}
|
2016-10-14 23:00:29 +02:00
|
|
|
|
2018-04-09 16:42:47 +02:00
|
|
|
// Though we currently only ever expect at most one thumbnail, the proto data model
|
|
|
|
// suggests this could change. The logic is intended to work with multiple, but
|
|
|
|
// if we ever actually want to send multiple, we should do more testing.
|
2018-09-06 19:01:24 +02:00
|
|
|
OWSAssertDebug(quotedThumbnailAttachments.count <= 1);
|
2018-04-09 16:42:47 +02:00
|
|
|
for (TSAttachmentStream *thumbnailAttachment in quotedThumbnailAttachments) {
|
2018-09-06 19:01:24 +02:00
|
|
|
OWSAssertDebug(message.quotedMessage);
|
2018-04-06 22:53:16 +02:00
|
|
|
|
2018-04-09 16:42:47 +02:00
|
|
|
OWSUploadOperation *uploadQuoteThumbnailOperation =
|
|
|
|
[[OWSUploadOperation alloc] initWithAttachmentId:thumbnailAttachment.uniqueId
|
|
|
|
dbConnection:self.dbConnection];
|
|
|
|
|
|
|
|
// TODO put attachment uploads on a (lowly) concurrent queue
|
|
|
|
[sendMessageOperation addDependency:uploadQuoteThumbnailOperation];
|
|
|
|
[sendingQueue addOperation:uploadQuoteThumbnailOperation];
|
2018-04-06 22:53:16 +02:00
|
|
|
}
|
2016-10-14 23:00:29 +02:00
|
|
|
|
2018-05-03 17:31:06 +02:00
|
|
|
if (contactShareAvatarAttachment != nil) {
|
2018-09-06 19:01:24 +02:00
|
|
|
OWSAssertDebug(message.contactShare);
|
2018-05-03 17:31:06 +02:00
|
|
|
OWSUploadOperation *uploadAvatarOperation =
|
|
|
|
[[OWSUploadOperation alloc] initWithAttachmentId:contactShareAvatarAttachment.uniqueId
|
|
|
|
dbConnection:self.dbConnection];
|
|
|
|
|
|
|
|
// TODO put attachment uploads on a (lowly) concurrent queue
|
|
|
|
[sendMessageOperation addDependency:uploadAvatarOperation];
|
|
|
|
[sendingQueue addOperation:uploadAvatarOperation];
|
|
|
|
}
|
|
|
|
|
2018-04-04 22:26:41 +02:00
|
|
|
[sendingQueue addOperation:sendMessageOperation];
|
|
|
|
});
|
2016-10-14 23:00:29 +02:00
|
|
|
}
|
|
|
|
|
2017-11-15 19:21:31 +01:00
|
|
|
- (void)enqueueTemporaryAttachment:(DataSource *)dataSource
|
|
|
|
contentType:(NSString *)contentType
|
|
|
|
inMessage:(TSOutgoingMessage *)message
|
|
|
|
success:(void (^)(void))successHandler
|
|
|
|
failure:(void (^)(NSError *error))failureHandler
|
2016-10-14 23:00:29 +02:00
|
|
|
{
|
2018-09-06 19:01:24 +02:00
|
|
|
OWSAssertDebug(dataSource);
|
2017-09-08 18:51:25 +02:00
|
|
|
|
2017-11-15 12:39:10 +01:00
|
|
|
void (^successWithDeleteHandler)(void) = ^() {
|
2016-10-14 23:00:29 +02:00
|
|
|
successHandler();
|
|
|
|
|
2018-08-27 18:51:32 +02:00
|
|
|
OWSLogDebug(@"Removing successful temporary attachment message with attachment ids: %@", message.attachmentIds);
|
2016-10-14 23:00:29 +02:00
|
|
|
[message remove];
|
|
|
|
};
|
|
|
|
|
|
|
|
void (^failureWithDeleteHandler)(NSError *error) = ^(NSError *error) {
|
|
|
|
failureHandler(error);
|
|
|
|
|
2018-08-27 18:51:32 +02:00
|
|
|
OWSLogDebug(@"Removing failed temporary attachment message with attachment ids: %@", message.attachmentIds);
|
2016-10-14 23:00:29 +02:00
|
|
|
[message remove];
|
|
|
|
};
|
|
|
|
|
2017-11-15 19:21:31 +01:00
|
|
|
[self enqueueAttachment:dataSource
|
|
|
|
contentType:contentType
|
|
|
|
sourceFilename:nil
|
|
|
|
inMessage:message
|
|
|
|
success:successWithDeleteHandler
|
|
|
|
failure:failureWithDeleteHandler];
|
2016-10-14 23:00:29 +02:00
|
|
|
}
|
|
|
|
|
2017-11-15 19:21:31 +01:00
|
|
|
- (void)enqueueAttachment:(DataSource *)dataSource
|
|
|
|
contentType:(NSString *)contentType
|
|
|
|
sourceFilename:(nullable NSString *)sourceFilename
|
|
|
|
inMessage:(TSOutgoingMessage *)message
|
|
|
|
success:(void (^)(void))successHandler
|
|
|
|
failure:(void (^)(NSError *error))failureHandler
|
2016-10-14 23:00:29 +02:00
|
|
|
{
|
2018-09-06 19:01:24 +02:00
|
|
|
OWSAssertDebug(dataSource);
|
2017-03-24 19:37:24 +01:00
|
|
|
|
2016-10-14 23:00:29 +02:00
|
|
|
dispatch_async([OWSDispatch attachmentsQueue], ^{
|
2017-11-08 18:56:55 +01:00
|
|
|
TSAttachmentStream *attachmentStream =
|
|
|
|
[[TSAttachmentStream alloc] initWithContentType:contentType
|
|
|
|
byteCount:(UInt32)dataSource.dataLength
|
|
|
|
sourceFilename:sourceFilename];
|
2017-05-12 15:11:43 +02:00
|
|
|
if (message.isVoiceMessage) {
|
|
|
|
attachmentStream.attachmentType = TSAttachmentTypeVoiceMessage;
|
|
|
|
}
|
2016-10-14 23:00:29 +02:00
|
|
|
|
2017-09-08 18:51:25 +02:00
|
|
|
if (![attachmentStream writeDataSource:dataSource]) {
|
2017-07-27 18:29:05 +02:00
|
|
|
OWSProdError([OWSAnalyticsEvents messageSenderErrorCouldNotWriteAttachment]);
|
2017-09-08 18:51:25 +02:00
|
|
|
NSError *error = OWSErrorMakeWriteAttachmentDataError();
|
2016-10-14 23:00:29 +02:00
|
|
|
return failureHandler(error);
|
|
|
|
}
|
|
|
|
|
|
|
|
[attachmentStream save];
|
|
|
|
[message.attachmentIds addObject:attachmentStream.uniqueId];
|
2017-05-15 15:53:16 +02:00
|
|
|
if (sourceFilename) {
|
|
|
|
message.attachmentFilenameMap[attachmentStream.uniqueId] = sourceFilename;
|
2017-04-13 18:54:03 +02:00
|
|
|
}
|
2016-10-14 23:00:29 +02:00
|
|
|
|
2017-11-15 19:21:31 +01:00
|
|
|
[self enqueueMessage:message success:successHandler failure:failureHandler];
|
2016-10-14 23:00:29 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-11-15 12:39:10 +01:00
|
|
|
- (void)sendMessageToService:(TSOutgoingMessage *)message
|
2018-10-03 23:04:41 +02:00
|
|
|
success:(void (^)(void))success
|
|
|
|
failure:(RetryableFailureHandler)failure
|
|
|
|
{
|
|
|
|
[self.udManager
|
|
|
|
ensureSenderCertificateObjCWithSuccess:^(SMKSenderCertificate *senderCertificate) {
|
2018-10-04 20:39:40 +02:00
|
|
|
dispatch_async([OWSDispatch sendingQueue], ^{
|
|
|
|
[self sendMessageToService:message senderCertificate:senderCertificate success:success failure:failure];
|
|
|
|
});
|
2018-10-03 23:04:41 +02:00
|
|
|
}
|
|
|
|
failure:^(NSError *error) {
|
|
|
|
OWSLogError(@"Could not obtain UD sender certificate: %@", error);
|
|
|
|
|
|
|
|
// Proceed using non-UD message sends.
|
2018-10-04 20:39:40 +02:00
|
|
|
dispatch_async([OWSDispatch sendingQueue], ^{
|
|
|
|
[self sendMessageToService:message senderCertificate:nil success:success failure:failure];
|
|
|
|
});
|
2018-10-03 23:04:41 +02:00
|
|
|
}];
|
|
|
|
}
|
|
|
|
|
2018-10-04 20:39:40 +02:00
|
|
|
- (nullable NSArray<NSString *> *)unsentRecipientsForMessage:(TSOutgoingMessage *)message
|
|
|
|
thread:(nullable TSThread *)thread
|
|
|
|
error:(NSError **)errorHandle
|
2016-10-14 23:00:29 +02:00
|
|
|
{
|
2018-10-04 20:39:40 +02:00
|
|
|
OWSAssertDebug(message);
|
|
|
|
OWSAssertDebug(errorHandle);
|
2018-04-23 16:30:51 +02:00
|
|
|
|
2018-10-04 20:39:40 +02:00
|
|
|
NSMutableSet<NSString *> *recipientIds = [NSMutableSet new];
|
|
|
|
if ([message isKindOfClass:[OWSOutgoingSyncMessage class]]) {
|
|
|
|
[recipientIds addObject:[TSAccountManager localNumber]];
|
|
|
|
} else if (thread.isGroupThread) {
|
|
|
|
TSGroupThread *groupThread = (TSGroupThread *)thread;
|
2017-04-01 22:47:16 +02:00
|
|
|
|
2018-10-04 20:39:40 +02:00
|
|
|
// Send to the intersection of:
|
|
|
|
//
|
|
|
|
// * "sending" recipients of the message.
|
|
|
|
// * members of the group.
|
|
|
|
//
|
|
|
|
// I.e. try to send a message IFF:
|
|
|
|
//
|
|
|
|
// * The recipient was in the group when the message was first tried to be sent.
|
|
|
|
// * The recipient is still in the group.
|
|
|
|
// * The recipient is in the "sending" state.
|
2018-10-04 15:58:58 +02:00
|
|
|
|
2018-10-04 20:39:40 +02:00
|
|
|
[recipientIds addObjectsFromArray:message.sendingRecipientIds];
|
|
|
|
// Only send to members in the latest known group member list.
|
|
|
|
[recipientIds intersectSet:[NSSet setWithArray:groupThread.groupModel.groupMemberIds]];
|
2017-04-05 01:44:14 +02:00
|
|
|
|
2018-10-04 20:39:40 +02:00
|
|
|
if ([recipientIds containsObject:TSAccountManager.localNumber]) {
|
|
|
|
OWSFailDebug(@"Message send recipients should not include self.");
|
|
|
|
}
|
|
|
|
} else if ([thread isKindOfClass:[TSContactThread class]]) {
|
|
|
|
NSString *recipientContactId = ((TSContactThread *)thread).contactIdentifier;
|
|
|
|
|
|
|
|
// Treat 1:1 sends to blocked contacts as failures.
|
|
|
|
// If we block a user, don't send 1:1 messages to them. The UI
|
|
|
|
// should prevent this from occurring, but in some edge cases
|
|
|
|
// you might, for example, have a pending outgoing message when
|
|
|
|
// you block them.
|
|
|
|
OWSAssertDebug(recipientContactId.length > 0);
|
|
|
|
if ([self.blockingManager isRecipientIdBlocked:recipientContactId]) {
|
|
|
|
OWSLogInfo(@"skipping 1:1 send to blocked contact: %@", recipientContactId);
|
2018-10-05 18:00:31 +02:00
|
|
|
NSError *error = OWSErrorMakeMessageSendFailedDueToBlockListError();
|
2017-04-14 16:25:52 +02:00
|
|
|
[error setIsRetryable:NO];
|
2018-10-04 20:39:40 +02:00
|
|
|
*errorHandle = error;
|
|
|
|
return nil;
|
2016-10-14 23:00:29 +02:00
|
|
|
}
|
2018-10-03 14:55:14 +02:00
|
|
|
|
2018-10-04 20:39:40 +02:00
|
|
|
[recipientIds addObject:recipientContactId];
|
2018-10-03 14:55:14 +02:00
|
|
|
|
2018-10-04 20:39:40 +02:00
|
|
|
if ([recipientIds containsObject:TSAccountManager.localNumber]) {
|
|
|
|
OWSFailDebug(@"Message send recipients should not include self.");
|
2018-10-03 14:55:14 +02:00
|
|
|
}
|
2018-10-04 20:39:40 +02:00
|
|
|
} else {
|
|
|
|
// Neither a group nor contact thread? This should never happen.
|
|
|
|
OWSFailDebug(@"Unknown message type: %@", [message class]);
|
|
|
|
NSError *error = OWSErrorMakeFailedToSendOutgoingMessageError();
|
|
|
|
[error setIsRetryable:NO];
|
|
|
|
*errorHandle = error;
|
|
|
|
return nil;
|
|
|
|
}
|
2018-10-03 14:55:14 +02:00
|
|
|
|
2018-10-04 20:39:40 +02:00
|
|
|
[recipientIds minusSet:[NSSet setWithArray:self.blockingManager.blockedPhoneNumbers]];
|
|
|
|
return recipientIds.allObjects;
|
|
|
|
}
|
2018-10-03 14:55:14 +02:00
|
|
|
|
2018-10-04 20:39:40 +02:00
|
|
|
- (NSArray<SignalRecipient *> *)recipientsForRecipientIds:(NSArray<NSString *> *)recipientIds
|
|
|
|
{
|
|
|
|
OWSAssertDebug(recipientIds.count > 0);
|
|
|
|
|
|
|
|
NSMutableArray<SignalRecipient *> *recipients = [NSMutableArray new];
|
|
|
|
[self.dbConnection readWithBlock:^(YapDatabaseReadTransaction *transaction) {
|
|
|
|
for (NSString *recipientId in recipientIds) {
|
|
|
|
SignalRecipient *recipient =
|
|
|
|
[SignalRecipient getOrBuildUnsavedRecipientForRecipientId:recipientId transaction:transaction];
|
|
|
|
[recipients addObject:recipient];
|
|
|
|
}
|
|
|
|
}];
|
|
|
|
return [recipients copy];
|
2016-10-14 23:00:29 +02:00
|
|
|
}
|
|
|
|
|
2018-10-04 20:39:40 +02:00
|
|
|
- (AnyPromise *)sendPromiseForRecipients:(NSArray<SignalRecipient *> *)recipients
|
|
|
|
message:(TSOutgoingMessage *)message
|
|
|
|
thread:(nullable TSThread *)thread
|
|
|
|
senderCertificate:(nullable SMKSenderCertificate *)senderCertificate
|
|
|
|
sendErrors:(NSMutableArray<NSError *> *)sendErrors
|
2016-10-14 23:00:29 +02:00
|
|
|
{
|
2018-10-04 20:39:40 +02:00
|
|
|
OWSAssertDebug(recipients.count > 0);
|
|
|
|
OWSAssertDebug(message);
|
|
|
|
OWSAssertDebug(sendErrors);
|
2018-04-24 22:11:10 +02:00
|
|
|
|
2018-07-20 21:22:51 +02:00
|
|
|
NSMutableArray<AnyPromise *> *sendPromises = [NSMutableArray array];
|
2016-10-14 23:00:29 +02:00
|
|
|
|
2018-10-04 20:39:40 +02:00
|
|
|
for (SignalRecipient *recipient in recipients) {
|
|
|
|
// Use chained promises to make the code more readable.
|
2018-07-20 21:22:51 +02:00
|
|
|
AnyPromise *sendPromise = [AnyPromise promiseWithResolverBlock:^(PMKResolver resolve) {
|
2018-10-04 20:39:40 +02:00
|
|
|
OWSMessageSend *messageSend = [[OWSMessageSend alloc] initWithMessage:message
|
|
|
|
thread:thread
|
|
|
|
recipient:recipient
|
|
|
|
senderCertificate:senderCertificate
|
|
|
|
udManager:self.udManager
|
|
|
|
localNumber:self.tsAccountManager.localNumber
|
2018-07-20 21:22:51 +02:00
|
|
|
success:^{
|
2018-07-23 19:25:21 +02:00
|
|
|
// The value doesn't matter, we just need any non-NSError value.
|
2018-07-20 21:22:51 +02:00
|
|
|
resolve(@(1));
|
|
|
|
}
|
|
|
|
failure:^(NSError *error) {
|
|
|
|
@synchronized(sendErrors) {
|
|
|
|
[sendErrors addObject:error];
|
|
|
|
}
|
|
|
|
resolve(error);
|
|
|
|
}];
|
2018-10-04 20:39:40 +02:00
|
|
|
[self sendMessageToRecipient:messageSend];
|
2018-07-20 21:22:51 +02:00
|
|
|
}];
|
|
|
|
[sendPromises addObject:sendPromise];
|
|
|
|
}
|
2016-10-14 23:00:29 +02:00
|
|
|
|
2018-07-20 21:22:51 +02:00
|
|
|
// We use PMKJoin(), not PMKWhen(), because we don't want the
|
|
|
|
// completion promise to execute until _all_ send promises
|
|
|
|
// have either succeeded or failed. PMKWhen() executes as
|
|
|
|
// soon as any of its input promises fail.
|
2018-10-04 20:39:40 +02:00
|
|
|
return PMKJoin(sendPromises);
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)sendMessageToService:(TSOutgoingMessage *)message
|
|
|
|
senderCertificate:(nullable SMKSenderCertificate *)senderCertificate
|
|
|
|
success:(void (^)(void))successHandler
|
|
|
|
failure:(RetryableFailureHandler)failureHandler
|
|
|
|
{
|
|
|
|
AssertIsOnSendingQueue();
|
|
|
|
|
|
|
|
TSThread *_Nullable thread = message.thread;
|
|
|
|
|
|
|
|
// In the "self-send" special case, we ony need to send a sync message with a delivery receipt.
|
|
|
|
if ([thread isKindOfClass:[TSContactThread class]] &&
|
|
|
|
[((TSContactThread *)thread).contactIdentifier isEqualToString:[TSAccountManager localNumber]]) {
|
|
|
|
// Send to self.
|
|
|
|
OWSAssertDebug(message.recipientIds.count == 1);
|
|
|
|
[self.dbConnection readWriteWithBlock:^(YapDatabaseReadWriteTransaction *transaction) {
|
|
|
|
for (NSString *recipientId in message.sendingRecipientIds) {
|
|
|
|
[message updateWithReadRecipientId:recipientId
|
|
|
|
readTimestamp:message.timestampForSorting
|
|
|
|
transaction:transaction];
|
|
|
|
}
|
|
|
|
}];
|
|
|
|
|
|
|
|
[self handleMessageSentLocally:message senderCertificate:senderCertificate];
|
|
|
|
|
2016-10-14 23:00:29 +02:00
|
|
|
successHandler();
|
2018-10-04 20:39:40 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-10-04 21:22:42 +02:00
|
|
|
if (thread.isGroupThread) {
|
|
|
|
[self saveInfoMessageForGroupMessage:message inThread:thread];
|
|
|
|
}
|
|
|
|
|
2018-10-04 20:39:40 +02:00
|
|
|
NSError *error;
|
|
|
|
NSArray<NSString *> *_Nullable recipientIds = [self unsentRecipientsForMessage:message thread:thread error:&error];
|
|
|
|
if (error || !recipientIds) {
|
|
|
|
error = SSKEnsureError(
|
|
|
|
error, OWSErrorCodeMessageSendNoValidRecipients, @"Could not build recipients list for message.");
|
|
|
|
[error setIsRetryable:NO];
|
|
|
|
return failureHandler(error);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Mark skipped recipients as such. We skip because:
|
|
|
|
//
|
|
|
|
// * Recipient is no longer in the group.
|
|
|
|
// * Recipient is blocked.
|
|
|
|
//
|
|
|
|
// Elsewhere, we skip recipient if their Signal account has been deactivated.
|
|
|
|
NSMutableSet<NSString *> *obsoleteRecipientIds = [NSMutableSet setWithArray:message.sendingRecipientIds];
|
|
|
|
[obsoleteRecipientIds minusSet:[NSSet setWithArray:recipientIds]];
|
|
|
|
if (obsoleteRecipientIds.count > 0) {
|
|
|
|
[self.dbConnection readWriteWithBlock:^(YapDatabaseReadWriteTransaction *transaction) {
|
|
|
|
for (NSString *recipientId in obsoleteRecipientIds) {
|
|
|
|
// Mark this recipient as "skipped".
|
|
|
|
[message updateWithSkippedRecipient:recipientId transaction:transaction];
|
|
|
|
}
|
|
|
|
}];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (recipientIds.count < 1) {
|
|
|
|
// All recipients are already sent or can be skipped.
|
|
|
|
successHandler();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
NSArray<SignalRecipient *> *recipients = [self recipientsForRecipientIds:recipientIds];
|
|
|
|
|
|
|
|
BOOL isGroupSend = (thread && thread.isGroupThread);
|
|
|
|
NSMutableArray<NSError *> *sendErrors = [NSMutableArray array];
|
|
|
|
AnyPromise *sendPromise = [self sendPromiseForRecipients:recipients
|
|
|
|
message:message
|
|
|
|
thread:thread
|
|
|
|
senderCertificate:senderCertificate
|
|
|
|
sendErrors:sendErrors]
|
|
|
|
.then(^(id value) {
|
|
|
|
successHandler();
|
|
|
|
});
|
|
|
|
sendPromise.catch(^(id failure) {
|
2017-04-14 17:33:13 +02:00
|
|
|
NSError *firstRetryableError = nil;
|
|
|
|
NSError *firstNonRetryableError = nil;
|
|
|
|
|
2018-07-20 21:22:51 +02:00
|
|
|
NSArray<NSError *> *sendErrorsCopy;
|
|
|
|
@synchronized(sendErrors) {
|
|
|
|
sendErrorsCopy = [sendErrors copy];
|
|
|
|
}
|
|
|
|
|
|
|
|
for (NSError *error in sendErrorsCopy) {
|
|
|
|
// Some errors should be ignored when sending messages
|
|
|
|
// to groups. See discussion on
|
|
|
|
// NSError (OWSMessageSender) category.
|
2018-10-03 14:55:14 +02:00
|
|
|
if (isGroupSend && [error shouldBeIgnoredForGroups]) {
|
2018-07-20 21:22:51 +02:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Some errors should never be retried, in order to avoid
|
|
|
|
// hitting rate limits, for example. Unfortunately, since
|
|
|
|
// group send retry is all-or-nothing, we need to fail
|
|
|
|
// immediately even if some of the other recipients had
|
|
|
|
// retryable errors.
|
|
|
|
if ([error isFatal]) {
|
|
|
|
failureHandler(error);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ([error isRetryable] && !firstRetryableError) {
|
|
|
|
firstRetryableError = error;
|
|
|
|
} else if (![error isRetryable] && !firstNonRetryableError) {
|
|
|
|
firstNonRetryableError = error;
|
2016-10-14 23:00:29 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-03 14:55:14 +02:00
|
|
|
// If any of the send errors are retryable, we want to retry.
|
2017-04-14 17:33:13 +02:00
|
|
|
// Therefore, prefer to propagate a retryable error.
|
|
|
|
if (firstRetryableError) {
|
|
|
|
return failureHandler(firstRetryableError);
|
|
|
|
} else if (firstNonRetryableError) {
|
|
|
|
return failureHandler(firstNonRetryableError);
|
|
|
|
} else {
|
|
|
|
// If we only received errors that we should ignore,
|
2017-04-17 22:45:22 +02:00
|
|
|
// consider this send a success, unless the message could
|
|
|
|
// not be sent to any recipient.
|
2018-10-04 20:39:40 +02:00
|
|
|
if (message.sentRecipientsCount == 0) {
|
2017-04-17 22:45:22 +02:00
|
|
|
NSError *error = OWSErrorWithCodeDescription(OWSErrorCodeMessageSendNoValidRecipients,
|
|
|
|
NSLocalizedString(@"ERROR_DESCRIPTION_NO_VALID_RECIPIENTS",
|
|
|
|
@"Error indicating that an outgoing message had no valid recipients."));
|
|
|
|
[error setIsRetryable:NO];
|
|
|
|
failureHandler(error);
|
|
|
|
} else {
|
|
|
|
successHandler();
|
|
|
|
}
|
2017-04-14 17:33:13 +02:00
|
|
|
}
|
2018-07-20 21:22:51 +02:00
|
|
|
});
|
2018-10-04 20:39:40 +02:00
|
|
|
[sendPromise retainUntilComplete];
|
2016-10-14 23:00:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void)unregisteredRecipient:(SignalRecipient *)recipient
|
|
|
|
message:(TSOutgoingMessage *)message
|
|
|
|
thread:(TSThread *)thread
|
|
|
|
{
|
2018-07-17 16:09:01 +02:00
|
|
|
[self.dbConnection readWriteWithBlock:^(YapDatabaseReadWriteTransaction *transaction) {
|
2018-04-24 21:49:08 +02:00
|
|
|
if (thread.isGroupThread) {
|
|
|
|
// Mark as "skipped" group members who no longer have signal accounts.
|
|
|
|
[message updateWithSkippedRecipient:recipient.recipientId transaction:transaction];
|
|
|
|
}
|
|
|
|
|
2018-07-17 16:09:01 +02:00
|
|
|
if (![SignalRecipient isRegisteredRecipient:recipient.recipientId transaction:transaction]) {
|
2018-07-13 21:23:08 +02:00
|
|
|
return;
|
|
|
|
}
|
2018-07-16 17:25:10 +02:00
|
|
|
|
2018-07-17 16:09:01 +02:00
|
|
|
[SignalRecipient removeUnregisteredRecipient:recipient.recipientId transaction:transaction];
|
2018-07-13 21:23:08 +02:00
|
|
|
|
2018-05-14 21:27:34 +02:00
|
|
|
[[TSInfoMessage userNotRegisteredMessageInThread:thread recipientId:recipient.recipientId]
|
2016-10-14 23:00:29 +02:00
|
|
|
saveWithTransaction:transaction];
|
2018-07-17 16:09:01 +02:00
|
|
|
|
|
|
|
// TODO: Should we deleteAllSessionsForContact here?
|
|
|
|
// If so, we'll need to avoid doing a prekey fetch every
|
|
|
|
// time we try to send a message to an unregistered user.
|
2016-10-14 23:00:29 +02:00
|
|
|
}];
|
|
|
|
}
|
|
|
|
|
2018-10-03 14:55:14 +02:00
|
|
|
- (nullable NSArray<NSDictionary *> *)deviceMessagesForMessageSendSafe:(OWSMessageSend *)messageSend
|
|
|
|
error:(NSError **)errorHandle
|
2016-10-14 23:00:29 +02:00
|
|
|
{
|
2018-10-03 14:55:14 +02:00
|
|
|
OWSAssertDebug(messageSend);
|
|
|
|
OWSAssertDebug(errorHandle);
|
2017-04-07 01:11:04 +02:00
|
|
|
AssertIsOnSendingQueue();
|
2017-02-09 19:50:32 +01:00
|
|
|
|
2018-10-03 14:55:14 +02:00
|
|
|
SignalRecipient *recipient = messageSend.recipient;
|
2016-10-14 23:00:29 +02:00
|
|
|
|
|
|
|
NSArray<NSDictionary *> *deviceMessages;
|
|
|
|
@try {
|
2018-10-05 16:41:10 +02:00
|
|
|
deviceMessages = [self deviceMessagesForMessageSendUnsafe:messageSend];
|
2016-10-14 23:00:29 +02:00
|
|
|
} @catch (NSException *exception) {
|
2016-11-10 15:59:07 +01:00
|
|
|
if ([exception.name isEqualToString:UntrustedIdentityKeyException]) {
|
2017-06-08 05:21:25 +02:00
|
|
|
// This *can* happen under normal usage, but it should happen relatively rarely.
|
|
|
|
// We expect it to happen whenever Bob reinstalls, and Alice messages Bob before
|
|
|
|
// she can pull down his latest identity.
|
|
|
|
// If it's happening a lot, we should rethink our profile fetching strategy.
|
2017-07-27 18:29:05 +02:00
|
|
|
OWSProdInfo([OWSAnalyticsEvents messageSendErrorFailedDueToUntrustedKey]);
|
2017-06-08 05:21:25 +02:00
|
|
|
|
2017-06-08 16:31:10 +02:00
|
|
|
NSString *localizedErrorDescriptionFormat
|
|
|
|
= NSLocalizedString(@"FAILED_SENDING_BECAUSE_UNTRUSTED_IDENTITY_KEY",
|
|
|
|
@"action sheet header when re-sending message which failed because of untrusted identity keys");
|
|
|
|
|
|
|
|
NSString *localizedErrorDescription =
|
|
|
|
[NSString stringWithFormat:localizedErrorDescriptionFormat,
|
|
|
|
[self.contactsManager displayNameForPhoneIdentifier:recipient.recipientId]];
|
2017-12-22 00:01:40 +01:00
|
|
|
NSError *error = OWSErrorMakeUntrustedIdentityError(localizedErrorDescription, recipient.recipientId);
|
2017-06-08 05:21:25 +02:00
|
|
|
|
2017-04-05 01:44:14 +02:00
|
|
|
// Key will continue to be unaccepted, so no need to retry. It'll only cause us to hit the Pre-Key request
|
|
|
|
// rate limit
|
2017-04-14 16:25:52 +02:00
|
|
|
[error setIsRetryable:NO];
|
2017-04-19 21:39:34 +02:00
|
|
|
// Avoid the "Too many failures with this contact" error rate limiting.
|
|
|
|
[error setIsFatal:YES];
|
2018-10-03 14:55:14 +02:00
|
|
|
*errorHandle = error;
|
2017-06-08 05:21:25 +02:00
|
|
|
|
2017-12-22 00:01:40 +01:00
|
|
|
PreKeyBundle *_Nullable newKeyBundle = exception.userInfo[TSInvalidPreKeyBundleKey];
|
|
|
|
if (newKeyBundle == nil) {
|
|
|
|
OWSProdFail([OWSAnalyticsEvents messageSenderErrorMissingNewPreKeyBundle]);
|
2018-10-03 14:55:14 +02:00
|
|
|
return nil;
|
2017-12-22 00:01:40 +01:00
|
|
|
}
|
|
|
|
|
2017-06-08 05:21:25 +02:00
|
|
|
if (![newKeyBundle isKindOfClass:[PreKeyBundle class]]) {
|
2017-07-27 18:29:05 +02:00
|
|
|
OWSProdFail([OWSAnalyticsEvents messageSenderErrorUnexpectedKeyBundle]);
|
2018-10-03 14:55:14 +02:00
|
|
|
return nil;
|
2017-06-08 05:21:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
NSData *newIdentityKeyWithVersion = newKeyBundle.identityKey;
|
2017-06-19 17:05:06 +02:00
|
|
|
|
2017-06-08 05:21:25 +02:00
|
|
|
if (![newIdentityKeyWithVersion isKindOfClass:[NSData class]]) {
|
2017-07-27 18:29:05 +02:00
|
|
|
OWSProdFail([OWSAnalyticsEvents messageSenderErrorInvalidIdentityKeyType]);
|
2018-10-03 14:55:14 +02:00
|
|
|
return nil;
|
2017-06-08 05:21:25 +02:00
|
|
|
}
|
|
|
|
|
2017-06-19 17:05:06 +02:00
|
|
|
// TODO migrate to storing the full 33 byte representation of the identity key.
|
|
|
|
if (newIdentityKeyWithVersion.length != kIdentityKeyLength) {
|
2017-07-27 18:29:05 +02:00
|
|
|
OWSProdFail([OWSAnalyticsEvents messageSenderErrorInvalidIdentityKeyLength]);
|
2018-10-03 14:55:14 +02:00
|
|
|
return nil;
|
2017-06-08 05:21:25 +02:00
|
|
|
}
|
|
|
|
|
2017-06-19 17:05:06 +02:00
|
|
|
NSData *newIdentityKey = [newIdentityKeyWithVersion removeKeyType];
|
2018-10-03 23:04:41 +02:00
|
|
|
[self.identityManager saveRemoteIdentity:newIdentityKey recipientId:recipient.recipientId];
|
2017-06-08 05:21:25 +02:00
|
|
|
|
2018-10-03 14:55:14 +02:00
|
|
|
return nil;
|
2016-11-10 15:59:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if ([exception.name isEqualToString:OWSMessageSenderRateLimitedException]) {
|
2017-02-01 16:21:50 +01:00
|
|
|
NSError *error = OWSErrorWithCodeDescription(OWSErrorCodeSignalServiceRateLimited,
|
2016-11-10 15:59:07 +01:00
|
|
|
NSLocalizedString(@"FAILED_SENDING_BECAUSE_RATE_LIMIT",
|
|
|
|
@"action sheet header when re-sending message which failed because of too many attempts"));
|
2017-04-05 01:44:14 +02:00
|
|
|
// We're already rate-limited. No need to exacerbate the problem.
|
2017-04-14 16:25:52 +02:00
|
|
|
[error setIsRetryable:NO];
|
2017-04-19 21:39:34 +02:00
|
|
|
// Avoid exacerbating the rate limiting.
|
|
|
|
[error setIsFatal:YES];
|
2018-10-03 14:55:14 +02:00
|
|
|
*errorHandle = error;
|
|
|
|
return nil;
|
2016-11-10 15:59:07 +01:00
|
|
|
}
|
|
|
|
|
2018-10-03 14:55:14 +02:00
|
|
|
if (messageSend.remainingAttempts == 0) {
|
|
|
|
OWSLogWarn(@"Terminal failure to build any device messages. Giving up with exception: %@", exception);
|
2016-10-14 23:00:29 +02:00
|
|
|
NSError *error = OWSErrorMakeFailedToSendOutgoingMessageError();
|
2017-04-05 01:44:14 +02:00
|
|
|
// Since we've already repeatedly failed to build messages, it's unlikely that repeating the whole process
|
|
|
|
// will succeed.
|
2017-04-14 16:25:52 +02:00
|
|
|
[error setIsRetryable:NO];
|
2018-10-03 14:55:14 +02:00
|
|
|
*errorHandle = error;
|
|
|
|
return nil;
|
2016-10-14 23:00:29 +02:00
|
|
|
}
|
2018-10-03 14:55:14 +02:00
|
|
|
|
|
|
|
OWSLogWarn(@"Could not build device messages: %@", exception);
|
|
|
|
NSError *error = OWSErrorMakeFailedToSendOutgoingMessageError();
|
|
|
|
[error setIsRetryable:YES];
|
|
|
|
*errorHandle = error;
|
|
|
|
return nil;
|
2016-10-14 23:00:29 +02:00
|
|
|
}
|
|
|
|
|
2018-10-03 14:55:14 +02:00
|
|
|
return deviceMessages;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void)sendMessageToRecipient:(OWSMessageSend *)messageSend
|
|
|
|
{
|
|
|
|
OWSAssertDebug(messageSend);
|
|
|
|
OWSAssertDebug(messageSend.thread || [messageSend.message isKindOfClass:[OWSOutgoingSyncMessage class]]);
|
|
|
|
|
|
|
|
TSOutgoingMessage *message = messageSend.message;
|
|
|
|
SignalRecipient *recipient = messageSend.recipient;
|
|
|
|
|
|
|
|
OWSLogInfo(@"attempting to send message: %@, timestamp: %llu, recipient: %@",
|
|
|
|
message.class,
|
|
|
|
message.timestamp,
|
|
|
|
recipient.uniqueId);
|
|
|
|
AssertIsOnSendingQueue();
|
|
|
|
|
|
|
|
if ([TSPreKeyManager isAppLockedDueToPreKeyUpdateFailures]) {
|
|
|
|
OWSProdError([OWSAnalyticsEvents messageSendErrorFailedDueToPrekeyUpdateFailures]);
|
|
|
|
|
|
|
|
// Retry prekey update every time user tries to send a message while app
|
|
|
|
// is disabled due to prekey update failures.
|
|
|
|
//
|
|
|
|
// Only try to update the signed prekey; updating it is sufficient to
|
|
|
|
// re-enable message sending.
|
|
|
|
[TSPreKeyManager
|
|
|
|
rotateSignedPreKeyWithSuccess:^{
|
|
|
|
OWSLogInfo(@"New prekeys registered with server.");
|
|
|
|
NSError *error = OWSErrorMakeMessageSendDisabledDueToPreKeyUpdateFailuresError();
|
|
|
|
[error setIsRetryable:YES];
|
2018-10-04 20:39:40 +02:00
|
|
|
return messageSend.failure(error);
|
2018-10-03 14:55:14 +02:00
|
|
|
}
|
|
|
|
failure:^(NSError *error) {
|
|
|
|
OWSLogWarn(@"Failed to update prekeys with the server: %@", error);
|
2018-10-04 20:39:40 +02:00
|
|
|
return messageSend.failure(error);
|
2018-10-03 14:55:14 +02:00
|
|
|
}];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (messageSend.remainingAttempts <= 0) {
|
|
|
|
// We should always fail with a specific error.
|
|
|
|
OWSProdFail([OWSAnalyticsEvents messageSenderErrorGenericSendFailure]);
|
|
|
|
|
|
|
|
NSError *error = OWSErrorMakeFailedToSendOutgoingMessageError();
|
|
|
|
[error setIsRetryable:YES];
|
2018-10-04 20:39:40 +02:00
|
|
|
return messageSend.failure(error);
|
2018-10-03 14:55:14 +02:00
|
|
|
}
|
2018-10-03 20:01:55 +02:00
|
|
|
|
2018-10-03 14:55:14 +02:00
|
|
|
// Consume an attempt.
|
|
|
|
messageSend.remainingAttempts = messageSend.remainingAttempts - 1;
|
|
|
|
|
|
|
|
NSError *deviceMessagesError;
|
|
|
|
NSArray<NSDictionary *> *_Nullable deviceMessages =
|
2018-10-05 16:41:10 +02:00
|
|
|
[self deviceMessagesForMessageSendSafe:messageSend error:&deviceMessagesError];
|
2018-10-03 14:55:14 +02:00
|
|
|
if (deviceMessagesError || !deviceMessages) {
|
|
|
|
OWSAssertDebug(deviceMessagesError);
|
2018-10-04 20:39:40 +02:00
|
|
|
return messageSend.failure(deviceMessagesError);
|
2018-10-03 14:55:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (messageSend.isLocalNumber) {
|
2018-09-06 19:01:24 +02:00
|
|
|
OWSAssertDebug([message isKindOfClass:[OWSOutgoingSyncMessage class]]);
|
2018-03-02 05:31:41 +01:00
|
|
|
// Messages sent to the "local number" should be sync messages.
|
2017-11-07 20:52:31 +01:00
|
|
|
//
|
|
|
|
// We can skip sending sync messages if we know that we have no linked
|
|
|
|
// devices. However, we need to be sure to handle the case where the
|
|
|
|
// linked device list has just changed.
|
|
|
|
//
|
|
|
|
// The linked device list is reflected in two separate pieces of state:
|
|
|
|
//
|
|
|
|
// * OWSDevice's state is updated when you link or unlink a device.
|
|
|
|
// * SignalRecipient's state is updated by 409 "Mismatched devices"
|
|
|
|
// responses from the service.
|
|
|
|
//
|
|
|
|
// If _both_ of these pieces of state agree that there are no linked
|
|
|
|
// devices, then can safely skip sending sync message.
|
|
|
|
|
|
|
|
// 1. Check OWSDevice's state.
|
2017-11-10 18:04:24 +01:00
|
|
|
BOOL mayHaveLinkedDevices = [OWSDeviceManager.sharedManager mayHaveLinkedDevices:self.dbConnection];
|
2017-11-02 19:10:45 +01:00
|
|
|
|
2017-11-07 20:52:31 +01:00
|
|
|
// 2. Check SignalRecipient's state.
|
2017-11-02 19:10:45 +01:00
|
|
|
BOOL hasDeviceMessages = deviceMessages.count > 0;
|
|
|
|
|
2018-08-27 18:51:32 +02:00
|
|
|
OWSLogInfo(@"mayHaveLinkedDevices: %d, hasDeviceMessages: %d", mayHaveLinkedDevices, hasDeviceMessages);
|
2018-03-02 05:31:41 +01:00
|
|
|
|
2017-11-10 17:04:40 +01:00
|
|
|
if (!mayHaveLinkedDevices && !hasDeviceMessages) {
|
2018-08-27 18:51:32 +02:00
|
|
|
OWSLogInfo(@"Ignoring sync message without secondary devices: %@", [message class]);
|
2018-09-06 19:01:24 +02:00
|
|
|
OWSAssertDebug([message isKindOfClass:[OWSOutgoingSyncMessage class]]);
|
2017-09-15 16:29:46 +02:00
|
|
|
|
|
|
|
dispatch_async([OWSDispatch sendingQueue], ^{
|
2018-10-03 14:55:14 +02:00
|
|
|
// This emulates the completion logic of an actual successful send (see below).
|
2018-04-27 22:37:09 +02:00
|
|
|
[self.dbConnection readWriteWithBlock:^(YapDatabaseReadWriteTransaction *transaction) {
|
2018-10-03 14:55:14 +02:00
|
|
|
[message updateWithSkippedRecipient:messageSend.localNumber transaction:transaction];
|
2018-04-27 22:37:09 +02:00
|
|
|
}];
|
2018-10-04 20:39:40 +02:00
|
|
|
messageSend.success();
|
2017-09-15 16:29:46 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
return;
|
2018-07-02 18:22:29 +02:00
|
|
|
} else if (mayHaveLinkedDevices && !hasDeviceMessages) {
|
2017-11-02 19:10:45 +01:00
|
|
|
// We may have just linked a new secondary device which is not yet reflected in
|
|
|
|
// the SignalRecipient that corresponds to ourself. Proceed. Client should learn
|
2017-11-07 20:52:31 +01:00
|
|
|
// of new secondary devices via 409 "Mismatched devices" response.
|
2018-08-27 18:51:32 +02:00
|
|
|
OWSLogWarn(@"account has secondary devices, but sync message has no device messages");
|
2018-07-02 18:22:29 +02:00
|
|
|
} else if (!mayHaveLinkedDevices && hasDeviceMessages) {
|
2018-08-27 18:51:32 +02:00
|
|
|
OWSFailDebug(@"sync message has device messages for unknown secondary devices.");
|
2017-09-15 16:29:46 +02:00
|
|
|
}
|
2018-07-17 16:09:01 +02:00
|
|
|
} else {
|
2018-09-06 19:01:24 +02:00
|
|
|
OWSAssertDebug(deviceMessages.count > 0);
|
2017-09-15 16:29:46 +02:00
|
|
|
}
|
|
|
|
|
2018-03-02 05:31:41 +01:00
|
|
|
if (deviceMessages.count == 0) {
|
2018-03-02 16:53:22 +01:00
|
|
|
// This might happen:
|
|
|
|
//
|
|
|
|
// * The first (after upgrading?) time we send a sync message to our linked devices.
|
|
|
|
// * After unlinking all linked devices.
|
|
|
|
// * After trying and failing to link a device.
|
2018-07-13 20:42:11 +02:00
|
|
|
// * The first time we send a message to a user, if they don't have their
|
2018-07-17 16:37:26 +02:00
|
|
|
// default device. For example, if they have unregistered
|
2018-07-13 20:42:11 +02:00
|
|
|
// their primary but still have a linked device. Or later, when they re-register.
|
2018-03-02 16:53:22 +01:00
|
|
|
//
|
|
|
|
// When we're not sure if we have linked devices, we need to try
|
|
|
|
// to send self-sync messages even if they have no device messages
|
|
|
|
// so that we can learn from the service whether or not there are
|
|
|
|
// linked devices that we don't know about.
|
2018-08-27 18:51:32 +02:00
|
|
|
OWSLogWarn(@"Sending a message with no device messages.");
|
2018-03-02 05:31:41 +01:00
|
|
|
}
|
|
|
|
|
2018-10-10 20:28:02 +02:00
|
|
|
const BOOL isUDSend = messageSend.isUDSend;
|
2018-03-02 05:06:52 +01:00
|
|
|
TSRequest *request = [OWSRequestFactory submitMessageRequestWithRecipient:recipient.uniqueId
|
|
|
|
messages:deviceMessages
|
2018-10-10 03:00:25 +02:00
|
|
|
timeStamp:message.timestamp
|
|
|
|
unidentifiedAccess:messageSend.unidentifiedAccess];
|
2018-10-10 20:28:02 +02:00
|
|
|
OWSWebSocketType webSocketType = (isUDSend ? OWSWebSocketTypeUD : OWSWebSocketTypeDefault);
|
2018-10-04 22:58:11 +02:00
|
|
|
BOOL canMakeWebsocketRequests = ([TSSocketManager.shared canMakeRequestsOfType:webSocketType] &&
|
|
|
|
!messageSend.hasWebsocketSendFailed);
|
|
|
|
if (canMakeWebsocketRequests) {
|
2018-10-04 21:51:04 +02:00
|
|
|
[TSSocketManager.shared makeRequest:request
|
2018-10-04 22:42:05 +02:00
|
|
|
webSocketType:webSocketType
|
2018-05-18 20:35:00 +02:00
|
|
|
success:^(id _Nullable responseObject) {
|
2018-10-10 16:27:29 +02:00
|
|
|
[self messageSendDidSucceed:messageSend deviceMessages:deviceMessages wasSentByUD:isUDSend];
|
2018-03-02 05:31:41 +01:00
|
|
|
}
|
2018-05-30 21:41:01 +02:00
|
|
|
failure:^(NSInteger statusCode, NSData *_Nullable responseData, NSError *error) {
|
2018-07-05 15:56:48 +02:00
|
|
|
dispatch_async([OWSDispatch sendingQueue], ^{
|
2018-10-03 14:55:14 +02:00
|
|
|
OWSLogDebug(@"Web socket send failed; failing over to REST.");
|
2018-07-05 15:56:48 +02:00
|
|
|
|
2018-10-10 16:44:55 +02:00
|
|
|
if (isUDSend && (statusCode == 401 || statusCode == 403)) {
|
|
|
|
// If a UD send fails due to service response (as opposed to network
|
|
|
|
// failure), mark recipient as _not_ in UD mode, then retry.
|
|
|
|
OWSLogDebug(@"UD send failed; failing over to non-UD send.");
|
2018-10-10 20:28:02 +02:00
|
|
|
[self.udManager setUnidentifiedAccessMode:UnidentifiedAccessModeDisabled
|
|
|
|
recipientId:recipient.uniqueId];
|
2018-10-10 16:44:55 +02:00
|
|
|
messageSend.hasUDAuthFailed = YES;
|
|
|
|
dispatch_async([OWSDispatch sendingQueue], ^{
|
|
|
|
[self sendMessageToRecipient:messageSend];
|
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-07-05 15:56:48 +02:00
|
|
|
// Websockets can fail in different ways, so we don't decrement remainingAttempts for websocket
|
|
|
|
// failure. Instead we fall back to REST, which will decrement retries. e.g. after linking a new
|
|
|
|
// device, sync messages will fail until the websocket re-opens.
|
2018-10-05 16:32:32 +02:00
|
|
|
messageSend.hasWebsocketSendFailed = YES;
|
2018-10-04 20:39:40 +02:00
|
|
|
[self sendMessageToRecipient:messageSend];
|
2018-07-05 15:56:48 +02:00
|
|
|
});
|
2018-05-18 20:35:00 +02:00
|
|
|
}];
|
|
|
|
} else {
|
|
|
|
[self.networkManager makeRequest:request
|
|
|
|
success:^(NSURLSessionDataTask *task, id responseObject) {
|
2018-10-10 16:27:29 +02:00
|
|
|
[self messageSendDidSucceed:messageSend deviceMessages:deviceMessages wasSentByUD:isUDSend];
|
2018-05-18 20:35:00 +02:00
|
|
|
}
|
|
|
|
failure:^(NSURLSessionDataTask *task, NSError *error) {
|
|
|
|
NSHTTPURLResponse *response = (NSHTTPURLResponse *)task.response;
|
|
|
|
NSInteger statusCode = response.statusCode;
|
2018-05-30 16:03:14 +02:00
|
|
|
NSData *_Nullable responseData = error.userInfo[AFNetworkingOperationFailingURLResponseDataErrorKey];
|
2018-05-18 20:35:00 +02:00
|
|
|
|
2018-10-10 20:28:02 +02:00
|
|
|
if (isUDSend && (statusCode == 401 || statusCode == 403)) {
|
2018-10-03 14:55:14 +02:00
|
|
|
// If a UD send fails due to service response (as opposed to network
|
|
|
|
// failure), mark recipient as _not_ in UD mode, then retry.
|
|
|
|
OWSLogDebug(@"UD send failed; failing over to non-UD send.");
|
2018-10-09 23:14:42 +02:00
|
|
|
[self.udManager setUnidentifiedAccessMode:UnidentifiedAccessModeDisabled
|
|
|
|
recipientId:recipient.uniqueId];
|
2018-10-05 16:32:32 +02:00
|
|
|
messageSend.hasUDAuthFailed = YES;
|
2018-10-04 17:33:58 +02:00
|
|
|
dispatch_async([OWSDispatch sendingQueue], ^{
|
2018-10-04 20:39:40 +02:00
|
|
|
[self sendMessageToRecipient:messageSend];
|
2018-10-04 17:33:58 +02:00
|
|
|
});
|
2018-10-03 14:55:14 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
[self messageSendDidFail:messageSend
|
2018-05-18 20:35:00 +02:00
|
|
|
deviceMessages:deviceMessages
|
|
|
|
statusCode:statusCode
|
|
|
|
error:error
|
2018-10-04 20:39:40 +02:00
|
|
|
responseData:responseData];
|
2018-05-18 20:35:00 +02:00
|
|
|
}];
|
|
|
|
}
|
|
|
|
}
|
2018-03-02 05:31:41 +01:00
|
|
|
|
2018-10-03 14:55:14 +02:00
|
|
|
- (void)messageSendDidSucceed:(OWSMessageSend *)messageSend
|
2018-05-18 20:35:00 +02:00
|
|
|
deviceMessages:(NSArray<NSDictionary *> *)deviceMessages
|
2018-10-10 16:27:29 +02:00
|
|
|
wasSentByUD:(BOOL)wasSentByUD {
|
2018-10-03 14:55:14 +02:00
|
|
|
OWSAssertDebug(messageSend);
|
2018-09-06 19:01:24 +02:00
|
|
|
OWSAssertDebug(deviceMessages);
|
2018-05-18 20:35:00 +02:00
|
|
|
|
2018-10-03 14:55:14 +02:00
|
|
|
SignalRecipient *recipient = messageSend.recipient;
|
|
|
|
|
2018-08-27 18:51:32 +02:00
|
|
|
OWSLogInfo(@"Message send succeeded.");
|
2018-05-18 20:35:00 +02:00
|
|
|
|
2018-10-03 14:55:14 +02:00
|
|
|
if (messageSend.isLocalNumber && deviceMessages.count == 0) {
|
2018-08-27 18:51:32 +02:00
|
|
|
OWSLogInfo(@"Sent a message with no device messages; clearing 'mayHaveLinkedDevices'.");
|
2018-05-18 20:35:00 +02:00
|
|
|
// In order to avoid skipping necessary sync messages, the default value
|
|
|
|
// for mayHaveLinkedDevices is YES. Once we've successfully sent a
|
|
|
|
// sync message with no device messages (e.g. the service has confirmed
|
|
|
|
// that we have no linked devices), we can set mayHaveLinkedDevices to NO
|
|
|
|
// to avoid unnecessary message sends for sync messages until we learn
|
|
|
|
// of a linked device (e.g. through the device linking UI or by receiving
|
|
|
|
// a sync message, etc.).
|
|
|
|
[OWSDeviceManager.sharedManager clearMayHaveLinkedDevicesIfNotSet];
|
|
|
|
}
|
2018-04-23 16:30:51 +02:00
|
|
|
|
2018-05-18 20:35:00 +02:00
|
|
|
dispatch_async([OWSDispatch sendingQueue], ^{
|
|
|
|
[self.dbConnection readWriteWithBlock:^(YapDatabaseReadWriteTransaction *transaction) {
|
2018-10-10 16:27:29 +02:00
|
|
|
[messageSend.message updateWithSentRecipient:messageSend.recipient.uniqueId
|
|
|
|
wasSentByUD:wasSentByUD
|
|
|
|
transaction:transaction];
|
2018-07-13 21:23:08 +02:00
|
|
|
|
2018-07-16 17:25:10 +02:00
|
|
|
// If we've just delivered a message to a user, we know they
|
|
|
|
// have a valid Signal account.
|
2018-07-17 16:09:01 +02:00
|
|
|
[SignalRecipient markRecipientAsRegisteredAndGet:recipient.recipientId transaction:transaction];
|
2018-05-18 20:35:00 +02:00
|
|
|
}];
|
2018-05-18 19:55:22 +02:00
|
|
|
|
2018-10-10 03:00:25 +02:00
|
|
|
[self handleMessageSentLocally:messageSend.message
|
|
|
|
senderCertificate:messageSend.unidentifiedAccess.senderCertificate];
|
2018-10-04 20:39:40 +02:00
|
|
|
messageSend.success();
|
2018-05-18 20:35:00 +02:00
|
|
|
});
|
|
|
|
}
|
2018-05-18 19:55:22 +02:00
|
|
|
|
2018-10-03 14:55:14 +02:00
|
|
|
- (void)messageSendDidFail:(OWSMessageSend *)messageSend
|
2018-05-18 20:35:00 +02:00
|
|
|
deviceMessages:(NSArray<NSDictionary *> *)deviceMessages
|
|
|
|
statusCode:(NSInteger)statusCode
|
2018-05-30 16:03:14 +02:00
|
|
|
error:(NSError *)responseError
|
|
|
|
responseData:(nullable NSData *)responseData
|
2018-05-18 20:35:00 +02:00
|
|
|
{
|
2018-10-03 14:55:14 +02:00
|
|
|
OWSAssertDebug(messageSend);
|
|
|
|
OWSAssertDebug(messageSend.thread || [messageSend.message isKindOfClass:[OWSOutgoingSyncMessage class]]);
|
2018-09-06 19:01:24 +02:00
|
|
|
OWSAssertDebug(deviceMessages);
|
|
|
|
OWSAssertDebug(responseError);
|
2016-10-24 19:54:00 +02:00
|
|
|
|
2018-10-03 14:55:14 +02:00
|
|
|
TSOutgoingMessage *message = messageSend.message;
|
|
|
|
SignalRecipient *recipient = messageSend.recipient;
|
|
|
|
|
2018-08-27 18:51:32 +02:00
|
|
|
OWSLogInfo(@"sending to recipient: %@, failed with error.", recipient.uniqueId);
|
2018-05-18 19:55:22 +02:00
|
|
|
|
2018-05-18 20:35:00 +02:00
|
|
|
void (^retrySend)(void) = ^void() {
|
2018-10-03 14:55:14 +02:00
|
|
|
if (messageSend.remainingAttempts <= 0) {
|
2018-05-18 20:35:00 +02:00
|
|
|
// Since we've already repeatedly failed to send to the messaging API,
|
|
|
|
// it's unlikely that repeating the whole process will succeed.
|
2018-05-30 16:03:14 +02:00
|
|
|
[responseError setIsRetryable:NO];
|
2018-10-04 20:39:40 +02:00
|
|
|
return messageSend.failure(responseError);
|
2018-05-18 20:35:00 +02:00
|
|
|
}
|
2017-05-02 17:31:29 +02:00
|
|
|
|
2018-05-18 20:35:00 +02:00
|
|
|
dispatch_async([OWSDispatch sendingQueue], ^{
|
2018-08-27 18:51:32 +02:00
|
|
|
OWSLogDebug(@"Retrying: %@", message.debugDescription);
|
2018-10-04 20:39:40 +02:00
|
|
|
[self sendMessageToRecipient:messageSend];
|
2018-05-18 20:35:00 +02:00
|
|
|
});
|
|
|
|
};
|
2016-10-14 23:00:29 +02:00
|
|
|
|
2018-07-17 16:09:01 +02:00
|
|
|
void (^handle404)(void) = ^{
|
2018-08-27 18:51:32 +02:00
|
|
|
OWSLogWarn(@"Unregistered recipient: %@", recipient.uniqueId);
|
2018-07-17 16:09:01 +02:00
|
|
|
|
2018-10-03 14:55:14 +02:00
|
|
|
TSThread *_Nullable thread = messageSend.thread;
|
2018-09-06 19:01:24 +02:00
|
|
|
OWSAssertDebug(thread);
|
2018-07-17 16:09:01 +02:00
|
|
|
|
|
|
|
dispatch_async([OWSDispatch sendingQueue], ^{
|
|
|
|
[self unregisteredRecipient:recipient message:message thread:thread];
|
|
|
|
|
|
|
|
NSError *error = OWSErrorMakeNoSuchSignalRecipientError();
|
|
|
|
// No need to retry if the recipient is not registered.
|
|
|
|
[error setIsRetryable:NO];
|
|
|
|
// If one member of a group deletes their account,
|
|
|
|
// the group should ignore errors when trying to send
|
|
|
|
// messages to this ex-member.
|
|
|
|
[error setShouldBeIgnoredForGroups:YES];
|
2018-10-04 20:39:40 +02:00
|
|
|
messageSend.failure(error);
|
2018-07-17 16:09:01 +02:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2018-05-18 20:35:00 +02:00
|
|
|
switch (statusCode) {
|
|
|
|
case 401: {
|
2018-08-27 18:55:37 +02:00
|
|
|
OWSLogWarn(@"Unable to send due to invalid credentials. Did the user's client get de-authed by "
|
|
|
|
@"registering elsewhere?");
|
2018-05-18 20:35:00 +02:00
|
|
|
NSError *error = OWSErrorWithCodeDescription(OWSErrorCodeSignalServiceFailure,
|
|
|
|
NSLocalizedString(
|
|
|
|
@"ERROR_DESCRIPTION_SENDING_UNAUTHORIZED", @"Error message when attempting to send message"));
|
|
|
|
// No need to retry if we've been de-authed.
|
|
|
|
[error setIsRetryable:NO];
|
2018-10-04 20:39:40 +02:00
|
|
|
return messageSend.failure(error);
|
2018-05-18 20:35:00 +02:00
|
|
|
}
|
|
|
|
case 404: {
|
2018-07-17 16:09:01 +02:00
|
|
|
handle404();
|
|
|
|
return;
|
2018-05-18 20:35:00 +02:00
|
|
|
}
|
|
|
|
case 409: {
|
|
|
|
// Mismatched devices
|
2018-08-27 18:51:32 +02:00
|
|
|
OWSLogWarn(@"Mismatched devices for recipient: %@ (%zd)", recipient.uniqueId, deviceMessages.count);
|
2018-05-18 19:55:22 +02:00
|
|
|
|
2018-05-30 16:03:14 +02:00
|
|
|
NSError *_Nullable error = nil;
|
|
|
|
NSDictionary *_Nullable responseJson = nil;
|
|
|
|
if (responseData) {
|
|
|
|
responseJson = [NSJSONSerialization JSONObjectWithData:responseData options:0 error:&error];
|
|
|
|
}
|
|
|
|
if (error || !responseJson) {
|
2018-05-18 20:35:00 +02:00
|
|
|
OWSProdError([OWSAnalyticsEvents messageSenderErrorCouldNotParseMismatchedDevicesJson]);
|
|
|
|
[error setIsRetryable:YES];
|
2018-10-04 20:39:40 +02:00
|
|
|
return messageSend.failure(error);
|
2018-05-18 20:35:00 +02:00
|
|
|
}
|
|
|
|
|
2018-07-17 16:09:01 +02:00
|
|
|
NSNumber *_Nullable errorCode = responseJson[@"code"];
|
|
|
|
if ([@(404) isEqual:errorCode]) {
|
|
|
|
// Some 404s are returned as 409.
|
|
|
|
handle404();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-05-30 16:03:14 +02:00
|
|
|
[self handleMismatchedDevicesWithResponseJson:responseJson recipient:recipient completion:retrySend];
|
2018-05-18 20:35:00 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case 410: {
|
|
|
|
// Stale devices
|
2018-08-27 18:51:32 +02:00
|
|
|
OWSLogWarn(@"Stale devices for recipient: %@", recipient.uniqueId);
|
2018-05-18 20:35:00 +02:00
|
|
|
|
2018-05-30 16:03:14 +02:00
|
|
|
NSError *_Nullable error = nil;
|
|
|
|
NSDictionary *_Nullable responseJson = nil;
|
|
|
|
if (responseData) {
|
|
|
|
responseJson = [NSJSONSerialization JSONObjectWithData:responseData options:0 error:&error];
|
|
|
|
}
|
|
|
|
if (error || !responseJson) {
|
2018-08-27 18:00:28 +02:00
|
|
|
OWSLogWarn(@"Stale devices but server didn't specify devices in response.");
|
2018-05-18 20:35:00 +02:00
|
|
|
NSError *error = OWSErrorMakeUnableToProcessServerResponseError();
|
|
|
|
[error setIsRetryable:YES];
|
2018-10-04 20:39:40 +02:00
|
|
|
return messageSend.failure(error);
|
2018-05-18 20:35:00 +02:00
|
|
|
}
|
|
|
|
|
2018-05-30 16:03:14 +02:00
|
|
|
[self handleStaleDevicesWithResponseJson:responseJson recipientId:recipient.uniqueId completion:retrySend];
|
2018-05-18 20:35:00 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
retrySend();
|
|
|
|
break;
|
|
|
|
}
|
2016-10-14 23:00:29 +02:00
|
|
|
}
|
|
|
|
|
2018-05-30 16:03:14 +02:00
|
|
|
- (void)handleMismatchedDevicesWithResponseJson:(NSDictionary *)responseJson
|
|
|
|
recipient:(SignalRecipient *)recipient
|
|
|
|
completion:(void (^)(void))completionHandler
|
2016-10-14 23:00:29 +02:00
|
|
|
{
|
2018-09-06 19:01:24 +02:00
|
|
|
OWSAssertDebug(responseJson);
|
|
|
|
OWSAssertDebug(recipient);
|
|
|
|
OWSAssertDebug(completionHandler);
|
2018-05-30 16:03:14 +02:00
|
|
|
|
|
|
|
NSArray *extraDevices = responseJson[@"extraDevices"];
|
|
|
|
NSArray *missingDevices = responseJson[@"missingDevices"];
|
2016-10-14 23:00:29 +02:00
|
|
|
|
2017-11-10 17:04:40 +01:00
|
|
|
if (missingDevices.count > 0) {
|
|
|
|
NSString *localNumber = [TSAccountManager localNumber];
|
|
|
|
if ([localNumber isEqualToString:recipient.uniqueId]) {
|
2018-01-11 16:25:13 +01:00
|
|
|
[OWSDeviceManager.sharedManager setMayHaveLinkedDevices];
|
2017-11-10 17:04:40 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-02 18:32:23 +01:00
|
|
|
[self.dbConnection
|
2018-07-25 17:42:50 +02:00
|
|
|
readWriteWithBlock:^(YapDatabaseReadWriteTransaction *transaction) {
|
2018-01-30 21:05:04 +01:00
|
|
|
if (extraDevices.count < 1 && missingDevices.count < 1) {
|
|
|
|
OWSProdFail([OWSAnalyticsEvents messageSenderErrorNoMissingOrExtraDevices]);
|
|
|
|
}
|
2017-05-02 17:31:29 +02:00
|
|
|
|
2018-01-30 21:05:04 +01:00
|
|
|
if (extraDevices && extraDevices.count > 0) {
|
2018-08-27 18:51:32 +02:00
|
|
|
OWSLogInfo(@"removing extra devices: %@", extraDevices);
|
2018-01-30 21:05:04 +01:00
|
|
|
for (NSNumber *extraDeviceId in extraDevices) {
|
2018-03-05 15:30:58 +01:00
|
|
|
[self.primaryStorage deleteSessionForContact:recipient.uniqueId
|
2018-01-30 21:05:04 +01:00
|
|
|
deviceId:extraDeviceId.intValue
|
|
|
|
protocolContext:transaction];
|
|
|
|
}
|
|
|
|
|
2018-07-25 17:42:50 +02:00
|
|
|
[recipient removeDevicesFromRecipient:[NSSet setWithArray:extraDevices] transaction:transaction];
|
2017-04-07 01:11:04 +02:00
|
|
|
}
|
2016-10-14 23:00:29 +02:00
|
|
|
|
2018-01-30 21:05:04 +01:00
|
|
|
if (missingDevices && missingDevices.count > 0) {
|
2018-08-27 18:51:32 +02:00
|
|
|
OWSLogInfo(@"Adding missing devices: %@", missingDevices);
|
2018-07-16 19:11:00 +02:00
|
|
|
[recipient addDevicesToRegisteredRecipient:[NSSet setWithArray:missingDevices]
|
|
|
|
transaction:transaction];
|
2018-01-30 21:05:04 +01:00
|
|
|
}
|
2016-10-14 23:00:29 +02:00
|
|
|
|
2018-01-30 21:05:04 +01:00
|
|
|
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
|
|
|
|
completionHandler();
|
|
|
|
});
|
|
|
|
}];
|
2016-10-14 23:00:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void)handleMessageSentLocally:(TSOutgoingMessage *)message
|
2018-10-03 23:04:41 +02:00
|
|
|
senderCertificate:(nullable SMKSenderCertificate *)senderCertificate
|
2016-10-14 23:00:29 +02:00
|
|
|
{
|
|
|
|
if (message.shouldSyncTranscript) {
|
2017-06-22 19:56:38 +02:00
|
|
|
// TODO: I suspect we shouldn't optimistically set hasSyncedTranscript.
|
|
|
|
// We could set this in a success handler for [sendSyncTranscriptForMessage:].
|
2017-11-14 19:41:01 +01:00
|
|
|
[self.dbConnection readWriteWithBlock:^(YapDatabaseReadWriteTransaction *transaction) {
|
2017-11-15 12:39:10 +01:00
|
|
|
[message updateWithHasSyncedTranscript:YES transaction:transaction];
|
2017-11-14 19:41:01 +01:00
|
|
|
}];
|
2018-10-03 23:04:41 +02:00
|
|
|
[self sendSyncTranscriptForMessage:message senderCertificate:senderCertificate];
|
2016-10-14 23:00:29 +02:00
|
|
|
}
|
|
|
|
|
2018-04-17 00:38:29 +02:00
|
|
|
[self.dbConnection readWriteWithBlock:^(YapDatabaseReadWriteTransaction *transaction) {
|
2018-04-18 02:53:27 +02:00
|
|
|
[[OWSDisappearingMessagesJob sharedJob] startAnyExpirationForMessage:message
|
|
|
|
expirationStartedAt:[NSDate ows_millisecondTimeStamp]
|
|
|
|
transaction:transaction];
|
2018-04-17 00:38:29 +02:00
|
|
|
}];
|
2016-10-14 23:00:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void)sendSyncTranscriptForMessage:(TSOutgoingMessage *)message
|
2018-10-03 23:04:41 +02:00
|
|
|
senderCertificate:(nullable SMKSenderCertificate *)senderCertificate
|
2016-10-08 01:17:38 +02:00
|
|
|
{
|
2016-10-14 23:00:29 +02:00
|
|
|
OWSOutgoingSentMessageTranscript *sentMessageTranscript =
|
|
|
|
[[OWSOutgoingSentMessageTranscript alloc] initWithOutgoingMessage:message];
|
|
|
|
|
2018-10-03 14:55:14 +02:00
|
|
|
NSString *recipientId = self.tsAccountManager.localNumber;
|
2018-09-17 15:27:58 +02:00
|
|
|
__block SignalRecipient *recipient;
|
|
|
|
[self.dbConnection readWriteWithBlock:^(YapDatabaseReadWriteTransaction *transaction) {
|
2018-09-17 15:51:44 +02:00
|
|
|
recipient = [SignalRecipient markRecipientAsRegisteredAndGet:recipientId transaction:transaction];
|
2018-09-17 15:27:58 +02:00
|
|
|
}];
|
|
|
|
|
2018-10-03 14:55:14 +02:00
|
|
|
OWSMessageSend *messageSend = [[OWSMessageSend alloc] initWithMessage:sentMessageTranscript
|
2018-10-04 20:39:40 +02:00
|
|
|
thread:message.thread
|
|
|
|
recipient:recipient
|
|
|
|
senderCertificate:senderCertificate
|
|
|
|
udManager:self.udManager
|
|
|
|
localNumber:self.tsAccountManager.localNumber
|
2016-10-08 01:17:38 +02:00
|
|
|
success:^{
|
2018-08-27 18:00:28 +02:00
|
|
|
OWSLogInfo(@"Successfully sent sync transcript.");
|
2016-10-08 01:17:38 +02:00
|
|
|
}
|
2017-04-14 16:25:52 +02:00
|
|
|
failure:^(NSError *error) {
|
2017-04-05 01:44:14 +02:00
|
|
|
// FIXME: We don't yet honor the isRetryable flag here, since sendSyncTranscriptForMessage
|
|
|
|
// isn't yet wrapped in our retryable SendMessageOperation. Addressing this would require
|
|
|
|
// a refactor to the MessageSender. Note that we *do* however continue to respect the
|
|
|
|
// OWSMessageSenderRetryAttempts, which is an "inner" retry loop, encompassing only the
|
|
|
|
// messaging API.
|
2018-08-27 18:00:28 +02:00
|
|
|
OWSLogInfo(@"Failed to send sync transcript: %@ (isRetryable: %d)", error, [error isRetryable]);
|
2016-10-08 01:17:38 +02:00
|
|
|
}];
|
2018-10-04 20:39:40 +02:00
|
|
|
[self sendMessageToRecipient:messageSend];
|
2016-10-08 01:17:38 +02:00
|
|
|
}
|
|
|
|
|
2018-10-03 14:55:14 +02:00
|
|
|
// NOTE: This method uses exceptions for control flow.
|
2018-10-05 16:41:10 +02:00
|
|
|
- (NSArray<NSDictionary *> *)deviceMessagesForMessageSendUnsafe:(OWSMessageSend *)messageSend
|
2016-10-14 23:00:29 +02:00
|
|
|
{
|
2018-10-03 14:55:14 +02:00
|
|
|
OWSAssertDebug(messageSend.message);
|
|
|
|
OWSAssertDebug(messageSend.recipient);
|
|
|
|
|
|
|
|
SignalRecipient *recipient = messageSend.recipient;
|
2017-09-27 23:13:29 +02:00
|
|
|
|
2016-10-14 23:00:29 +02:00
|
|
|
NSMutableArray *messagesArray = [NSMutableArray arrayWithCapacity:recipient.devices.count];
|
2017-08-01 23:01:07 +02:00
|
|
|
|
2018-10-03 14:55:14 +02:00
|
|
|
NSData *_Nullable plainText = [messageSend.message buildPlainTextData:messageSend.recipient];
|
2018-08-01 23:13:01 +02:00
|
|
|
if (!plainText) {
|
|
|
|
OWSRaiseException(InvalidMessageException, @"Failed to build message proto");
|
|
|
|
}
|
2018-10-03 14:55:14 +02:00
|
|
|
OWSLogDebug(
|
|
|
|
@"built message: %@ plainTextData.length: %lu", [messageSend.message class], (unsigned long)plainText.length);
|
2016-10-14 23:00:29 +02:00
|
|
|
|
2018-10-09 15:11:06 +02:00
|
|
|
OWSLogDebug(@"recipient.devices: %@", recipient.devices);
|
|
|
|
[DDLog flushLog];
|
|
|
|
|
|
|
|
NSMutableArray<NSNumber *> *deviceIds = [recipient.devices mutableCopy];
|
|
|
|
OWSAssertDebug(deviceIds);
|
|
|
|
|
|
|
|
if (messageSend.isUDSend && messageSend.isLocalNumber) {
|
|
|
|
OWSAssertDebug(![deviceIds containsObject:@(OWSDevicePrimaryDeviceId)]);
|
|
|
|
|
|
|
|
[deviceIds addObject:@(OWSDevicePrimaryDeviceId)];
|
|
|
|
}
|
|
|
|
|
|
|
|
for (NSNumber *deviceId in deviceIds) {
|
2016-10-14 23:00:29 +02:00
|
|
|
@try {
|
2017-01-23 00:09:38 +01:00
|
|
|
__block NSDictionary *messageDict;
|
2017-01-31 15:46:25 +01:00
|
|
|
__block NSException *encryptionException;
|
2018-02-02 18:32:23 +01:00
|
|
|
[self.dbConnection
|
2018-01-30 21:05:04 +01:00
|
|
|
readWriteWithBlock:^(YapDatabaseReadWriteTransaction *transaction) {
|
|
|
|
@try {
|
2018-10-03 20:01:55 +02:00
|
|
|
messageDict = [self encryptedMessageForMessageSend:messageSend
|
2018-10-09 15:11:06 +02:00
|
|
|
deviceId:deviceId
|
2018-10-03 20:01:55 +02:00
|
|
|
plainText:plainText
|
|
|
|
transaction:transaction];
|
2018-01-30 21:05:04 +01:00
|
|
|
} @catch (NSException *exception) {
|
|
|
|
encryptionException = exception;
|
|
|
|
}
|
|
|
|
}];
|
2017-09-13 22:48:38 +02:00
|
|
|
|
2017-01-31 15:46:25 +01:00
|
|
|
if (encryptionException) {
|
2018-08-27 18:51:32 +02:00
|
|
|
OWSLogInfo(@"Exception during encryption: %@", encryptionException);
|
2017-01-31 15:46:25 +01:00
|
|
|
@throw encryptionException;
|
|
|
|
}
|
2017-01-23 00:09:38 +01:00
|
|
|
|
2016-10-14 23:00:29 +02:00
|
|
|
if (messageDict) {
|
|
|
|
[messagesArray addObject:messageDict];
|
|
|
|
} else {
|
2018-01-25 16:44:13 +01:00
|
|
|
OWSRaiseException(InvalidMessageException, @"Failed to encrypt message");
|
2016-10-14 23:00:29 +02:00
|
|
|
}
|
|
|
|
} @catch (NSException *exception) {
|
|
|
|
if ([exception.name isEqualToString:OWSMessageSenderInvalidDeviceException]) {
|
2018-07-25 17:42:50 +02:00
|
|
|
[self.dbConnection readWriteWithBlock:^(YapDatabaseReadWriteTransaction *transaction) {
|
2018-10-09 15:11:06 +02:00
|
|
|
[recipient removeDevicesFromRecipient:[NSSet setWithObject:deviceId] transaction:transaction];
|
2018-07-25 17:42:50 +02:00
|
|
|
}];
|
2016-10-14 23:00:29 +02:00
|
|
|
} else {
|
|
|
|
@throw exception;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return [messagesArray copy];
|
|
|
|
}
|
|
|
|
|
2018-10-03 23:04:41 +02:00
|
|
|
// NOTE: This method uses exceptions for control flow.
|
|
|
|
- (void)ensureRecipientHasSessionForMessageSend:(OWSMessageSend *)messageSend
|
|
|
|
deviceId:(NSNumber *)deviceId
|
|
|
|
transaction:(YapDatabaseReadWriteTransaction *)transaction
|
2016-10-14 23:00:29 +02:00
|
|
|
{
|
2018-10-03 20:01:55 +02:00
|
|
|
OWSAssertDebug(messageSend);
|
2018-10-03 23:04:41 +02:00
|
|
|
OWSAssertDebug(deviceId);
|
2018-09-06 19:01:24 +02:00
|
|
|
OWSAssertDebug(transaction);
|
2017-09-27 23:13:29 +02:00
|
|
|
|
2018-10-03 20:01:55 +02:00
|
|
|
OWSPrimaryStorage *storage = self.primaryStorage;
|
|
|
|
SignalRecipient *recipient = messageSend.recipient;
|
|
|
|
NSString *recipientId = recipient.recipientId;
|
|
|
|
OWSAssertDebug(recipientId.length > 0);
|
2018-07-17 16:09:01 +02:00
|
|
|
|
2018-10-03 23:04:41 +02:00
|
|
|
if (![storage containsSession:recipientId deviceId:[deviceId intValue] protocolContext:transaction]) {
|
2016-10-14 23:00:29 +02:00
|
|
|
__block dispatch_semaphore_t sema = dispatch_semaphore_create(0);
|
2017-07-24 16:35:18 +02:00
|
|
|
__block PreKeyBundle *_Nullable bundle;
|
|
|
|
__block NSException *_Nullable exception;
|
2018-02-13 22:11:42 +01:00
|
|
|
// It's not ideal that we're using a semaphore inside a read/write transaction.
|
|
|
|
// To avoid deadlock, we need to ensure that our success/failure completions
|
|
|
|
// are called _off_ the main thread. Otherwise we'll deadlock if the main
|
|
|
|
// thread is blocked on opening a transaction.
|
2018-10-10 03:00:25 +02:00
|
|
|
TSRequest *request = [OWSRequestFactory recipientPrekeyRequestWithRecipient:recipientId
|
|
|
|
deviceId:[deviceId stringValue]
|
|
|
|
unidentifiedAccess:messageSend.unidentifiedAccess];
|
2018-10-03 20:01:55 +02:00
|
|
|
|
2018-02-13 22:11:42 +01:00
|
|
|
[self.networkManager makeRequest:request
|
2018-02-14 16:36:12 +01:00
|
|
|
completionQueue:dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0)
|
2016-10-14 23:00:29 +02:00
|
|
|
success:^(NSURLSessionDataTask *task, id responseObject) {
|
2018-10-03 23:04:41 +02:00
|
|
|
bundle = [PreKeyBundle preKeyBundleFromDictionary:responseObject forDeviceNumber:deviceId];
|
2016-10-14 23:00:29 +02:00
|
|
|
dispatch_semaphore_signal(sema);
|
|
|
|
}
|
|
|
|
failure:^(NSURLSessionDataTask *task, NSError *error) {
|
2017-07-24 17:06:19 +02:00
|
|
|
if (!IsNSErrorNetworkFailure(error)) {
|
2017-07-27 18:29:05 +02:00
|
|
|
OWSProdError([OWSAnalyticsEvents messageSenderErrorRecipientPrekeyRequestFailed]);
|
2017-07-24 17:06:19 +02:00
|
|
|
}
|
2018-08-27 18:00:28 +02:00
|
|
|
OWSLogError(@"Server replied to PreKeyBundle request with error: %@", error);
|
2016-10-14 23:00:29 +02:00
|
|
|
NSHTTPURLResponse *response = (NSHTTPURLResponse *)task.response;
|
|
|
|
if (response.statusCode == 404) {
|
2016-11-03 21:10:06 +01:00
|
|
|
// Can't throw exception from within callback as it's probabably a different thread.
|
|
|
|
exception = [NSException exceptionWithName:OWSMessageSenderInvalidDeviceException
|
|
|
|
reason:@"Device not registered"
|
|
|
|
userInfo:nil];
|
2016-11-10 15:59:07 +01:00
|
|
|
} else if (response.statusCode == 413) {
|
|
|
|
// Can't throw exception from within callback as it's probabably a different thread.
|
|
|
|
exception = [NSException exceptionWithName:OWSMessageSenderRateLimitedException
|
|
|
|
reason:@"Too many prekey requests"
|
|
|
|
userInfo:nil];
|
2016-10-14 23:00:29 +02:00
|
|
|
}
|
|
|
|
dispatch_semaphore_signal(sema);
|
|
|
|
}];
|
2018-02-13 17:31:02 +01:00
|
|
|
// FIXME: Currently this happens within a readwrite transaction - meaning our read-write transaction blocks
|
|
|
|
// on a network request.
|
2016-10-14 23:00:29 +02:00
|
|
|
dispatch_semaphore_wait(sema, DISPATCH_TIME_FOREVER);
|
2016-11-03 21:10:06 +01:00
|
|
|
if (exception) {
|
|
|
|
@throw exception;
|
|
|
|
}
|
2016-10-14 23:00:29 +02:00
|
|
|
|
|
|
|
if (!bundle) {
|
2018-01-25 16:44:13 +01:00
|
|
|
OWSRaiseException(
|
|
|
|
InvalidVersionException, @"Can't get a prekey bundle from the server with required information");
|
2016-10-14 23:00:29 +02:00
|
|
|
} else {
|
|
|
|
SessionBuilder *builder = [[SessionBuilder alloc] initWithSessionStore:storage
|
|
|
|
preKeyStore:storage
|
|
|
|
signedPreKeyStore:storage
|
2018-10-03 23:04:41 +02:00
|
|
|
identityKeyStore:self.identityManager
|
2018-10-03 20:01:55 +02:00
|
|
|
recipientId:recipientId
|
2018-10-03 23:04:41 +02:00
|
|
|
deviceId:[deviceId intValue]];
|
2016-10-14 23:00:29 +02:00
|
|
|
@try {
|
2018-01-30 21:05:04 +01:00
|
|
|
[builder processPrekeyBundle:bundle protocolContext:transaction];
|
2016-10-14 23:00:29 +02:00
|
|
|
} @catch (NSException *exception) {
|
|
|
|
if ([exception.name isEqualToString:UntrustedIdentityKeyException]) {
|
2018-01-25 16:44:13 +01:00
|
|
|
OWSRaiseExceptionWithUserInfo(UntrustedIdentityKeyException,
|
2018-10-03 20:01:55 +02:00
|
|
|
(@{ TSInvalidPreKeyBundleKey : bundle, TSInvalidRecipientKey : recipientId }),
|
2018-01-25 16:44:13 +01:00
|
|
|
@"");
|
2016-10-14 23:00:29 +02:00
|
|
|
}
|
|
|
|
@throw exception;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-10-03 23:04:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// NOTE: This method uses exceptions for control flow.
|
|
|
|
- (NSDictionary *)encryptedMessageForMessageSend:(OWSMessageSend *)messageSend
|
|
|
|
deviceId:(NSNumber *)deviceId
|
|
|
|
plainText:(NSData *)plainText
|
|
|
|
transaction:(YapDatabaseReadWriteTransaction *)transaction
|
|
|
|
{
|
|
|
|
OWSAssertDebug(messageSend);
|
|
|
|
OWSAssertDebug(deviceId);
|
|
|
|
OWSAssertDebug(plainText);
|
|
|
|
OWSAssertDebug(transaction);
|
|
|
|
|
|
|
|
OWSPrimaryStorage *storage = self.primaryStorage;
|
|
|
|
TSOutgoingMessage *message = messageSend.message;
|
|
|
|
SignalRecipient *recipient = messageSend.recipient;
|
|
|
|
NSString *recipientId = recipient.recipientId;
|
|
|
|
OWSAssertDebug(recipientId.length > 0);
|
|
|
|
|
|
|
|
// This may throw an exception.
|
|
|
|
[self ensureRecipientHasSessionForMessageSend:messageSend
|
|
|
|
deviceId:deviceId
|
|
|
|
transaction:transaction];
|
2016-10-14 23:00:29 +02:00
|
|
|
|
|
|
|
SessionCipher *cipher = [[SessionCipher alloc] initWithSessionStore:storage
|
|
|
|
preKeyStore:storage
|
|
|
|
signedPreKeyStore:storage
|
2018-10-03 23:04:41 +02:00
|
|
|
identityKeyStore:self.identityManager
|
2018-10-03 20:01:55 +02:00
|
|
|
recipientId:recipientId
|
2018-10-03 23:04:41 +02:00
|
|
|
deviceId:[deviceId intValue]];
|
2017-01-23 00:09:38 +01:00
|
|
|
|
2018-10-03 23:04:41 +02:00
|
|
|
NSData *_Nullable serializedMessage;
|
|
|
|
TSWhisperMessageType messageType;
|
2018-10-05 16:41:10 +02:00
|
|
|
if (messageSend.isUDSend) {
|
2018-10-03 23:04:41 +02:00
|
|
|
NSError *error;
|
|
|
|
SMKSecretSessionCipher *_Nullable secretCipher =
|
|
|
|
[[SMKSecretSessionCipher alloc] initWithSessionStore:self.primaryStorage
|
|
|
|
preKeyStore:self.primaryStorage
|
|
|
|
signedPreKeyStore:self.primaryStorage
|
|
|
|
identityStore:self.identityManager
|
|
|
|
error:&error];
|
|
|
|
if (error || !secretCipher) {
|
|
|
|
OWSRaiseException(@"SecretSessionCipherFailure", @"Can't create secret session cipher.");
|
|
|
|
}
|
2017-01-23 00:09:38 +01:00
|
|
|
|
2018-10-03 23:04:41 +02:00
|
|
|
serializedMessage = [secretCipher encryptMessageWithRecipientId:recipientId
|
|
|
|
deviceId:deviceId.intValue
|
|
|
|
paddedPlaintext:[plainText paddedMessageBody]
|
2018-10-10 03:00:25 +02:00
|
|
|
senderCertificate:messageSend.unidentifiedAccess.senderCertificate
|
2018-10-03 23:04:41 +02:00
|
|
|
protocolContext:transaction
|
|
|
|
error:&error];
|
|
|
|
messageType = TSUnidentifiedSenderMessageType;
|
|
|
|
} else {
|
2018-10-05 16:32:32 +02:00
|
|
|
// This may throw an exception.
|
2018-10-03 23:04:41 +02:00
|
|
|
id<CipherMessage> encryptedMessage =
|
|
|
|
[cipher encryptMessage:[plainText paddedMessageBody] protocolContext:transaction];
|
|
|
|
serializedMessage = encryptedMessage.serialized;
|
|
|
|
messageType = [self messageTypeForCipherMessage:encryptedMessage];
|
|
|
|
}
|
2016-10-14 23:00:29 +02:00
|
|
|
|
2018-10-03 20:01:55 +02:00
|
|
|
BOOL isSilent = message.isSilent;
|
2018-01-30 21:05:04 +01:00
|
|
|
OWSMessageServiceParams *messageParams =
|
|
|
|
[[OWSMessageServiceParams alloc] initWithType:messageType
|
2018-10-03 20:01:55 +02:00
|
|
|
recipientId:recipientId
|
2018-10-03 23:04:41 +02:00
|
|
|
device:[deviceId intValue]
|
2018-01-30 21:05:04 +01:00
|
|
|
content:serializedMessage
|
|
|
|
isSilent:isSilent
|
|
|
|
registrationId:[cipher remoteRegistrationId:transaction]];
|
2016-10-14 23:00:29 +02:00
|
|
|
|
|
|
|
NSError *error;
|
|
|
|
NSDictionary *jsonDict = [MTLJSONAdapter JSONDictionaryFromModel:messageParams error:&error];
|
|
|
|
|
|
|
|
if (error) {
|
2017-07-27 18:29:05 +02:00
|
|
|
OWSProdError([OWSAnalyticsEvents messageSendErrorCouldNotSerializeMessageJson]);
|
2016-10-14 23:00:29 +02:00
|
|
|
return nil;
|
|
|
|
}
|
|
|
|
|
|
|
|
return jsonDict;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (TSWhisperMessageType)messageTypeForCipherMessage:(id<CipherMessage>)cipherMessage
|
|
|
|
{
|
2018-09-28 16:56:53 +02:00
|
|
|
switch (cipherMessage.cipherMessageType) {
|
|
|
|
case CipherMessageType_Whisper:
|
|
|
|
return TSEncryptedWhisperMessageType;
|
|
|
|
case CipherMessageType_Prekey:
|
|
|
|
return TSPreKeyWhisperMessageType;
|
|
|
|
default:
|
|
|
|
return TSUnknownMessageType;
|
2016-10-14 23:00:29 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-05 16:32:32 +02:00
|
|
|
- (void)saveInfoMessageForGroupMessage:(TSOutgoingMessage *)message inThread:(TSThread *)thread
|
|
|
|
{
|
2018-10-04 21:22:42 +02:00
|
|
|
OWSAssertDebug(message);
|
|
|
|
OWSAssertDebug(thread);
|
|
|
|
|
|
|
|
if (message.groupMetaMessage == TSGroupMetaMessageDeliver) {
|
|
|
|
// TODO: Why is this necessary?
|
|
|
|
[message save];
|
|
|
|
} else if (message.groupMetaMessage == TSGroupMetaMessageQuit) {
|
2018-10-05 16:32:32 +02:00
|
|
|
[[[TSInfoMessage alloc] initWithTimestamp:message.timestamp
|
|
|
|
inThread:thread
|
|
|
|
messageType:TSInfoMessageTypeGroupQuit
|
|
|
|
customMessage:message.customMessage] save];
|
|
|
|
} else {
|
|
|
|
[[[TSInfoMessage alloc] initWithTimestamp:message.timestamp
|
|
|
|
inThread:thread
|
|
|
|
messageType:TSInfoMessageTypeGroupUpdate
|
|
|
|
customMessage:message.customMessage] save];
|
|
|
|
}
|
|
|
|
}
|
2016-10-14 23:00:29 +02:00
|
|
|
|
2017-06-08 05:21:25 +02:00
|
|
|
// Called when the server indicates that the devices no longer exist - e.g. when the remote recipient has reinstalled.
|
2018-05-30 16:03:14 +02:00
|
|
|
- (void)handleStaleDevicesWithResponseJson:(NSDictionary *)responseJson
|
|
|
|
recipientId:(NSString *)identifier
|
|
|
|
completion:(void (^)(void))completionHandler
|
2016-10-14 23:00:29 +02:00
|
|
|
{
|
|
|
|
dispatch_async([OWSDispatch sendingQueue], ^{
|
2018-05-30 16:03:14 +02:00
|
|
|
NSArray *devices = responseJson[@"staleDevices"];
|
2016-10-14 23:00:29 +02:00
|
|
|
|
|
|
|
if (!([devices count] > 0)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-02-02 18:32:23 +01:00
|
|
|
[self.dbConnection asyncReadWriteWithBlock:^(YapDatabaseReadWriteTransaction *transaction) {
|
2017-04-07 01:11:04 +02:00
|
|
|
for (NSUInteger i = 0; i < [devices count]; i++) {
|
|
|
|
int deviceNumber = [devices[i] intValue];
|
2018-03-05 15:30:58 +01:00
|
|
|
[[OWSPrimaryStorage sharedManager] deleteSessionForContact:identifier
|
|
|
|
deviceId:deviceNumber
|
|
|
|
protocolContext:transaction];
|
2017-04-07 01:11:04 +02:00
|
|
|
}
|
2018-01-30 21:05:04 +01:00
|
|
|
}];
|
|
|
|
completionHandler();
|
2016-10-14 23:00:29 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2016-10-08 01:17:38 +02:00
|
|
|
@end
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_END
|