mirror of
https://github.com/oxen-io/session-ios.git
synced 2023-12-13 21:30:14 +01:00
834ad3f8e1
// FREEBIE
448 lines
13 KiB
Objective-C
448 lines
13 KiB
Objective-C
//
|
|
// Copyright (c) 2017 Open Whisper Systems. All rights reserved.
|
|
//
|
|
|
|
#import "OWSMessageReceiver.h"
|
|
#import "NSArray+OWS.h"
|
|
#import "OWSBatchMessageProcessor.h"
|
|
#import "OWSMessageDecrypter.h"
|
|
#import "OWSQueues.h"
|
|
#import "OWSSignalServiceProtos.pb.h"
|
|
#import "TSDatabaseView.h"
|
|
#import "TSStorageManager.h"
|
|
#import "TSYapDatabaseObject.h"
|
|
#import "Threading.h"
|
|
#import <YapDatabase/YapDatabaseConnection.h>
|
|
#import <YapDatabase/YapDatabaseTransaction.h>
|
|
#import <YapDatabase/YapDatabaseView.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface OWSMessageDecryptJob : TSYapDatabaseObject
|
|
|
|
@property (nonatomic, readonly) NSDate *createdAt;
|
|
@property (nonatomic, readonly) NSData *envelopeData;
|
|
|
|
- (instancetype)initWithEnvelope:(OWSSignalServiceProtosEnvelope *)envelope NS_DESIGNATED_INITIALIZER;
|
|
- (nullable instancetype)initWithCoder:(NSCoder *)coder NS_DESIGNATED_INITIALIZER;
|
|
- (instancetype)initWithUniqueId:(NSString *)uniqueId NS_UNAVAILABLE;
|
|
- (OWSSignalServiceProtosEnvelope *)envelopeProto;
|
|
|
|
@end
|
|
|
|
#pragma mark -
|
|
|
|
@implementation OWSMessageDecryptJob
|
|
|
|
+ (NSString *)collection
|
|
{
|
|
return @"OWSMessageProcessingJob";
|
|
}
|
|
|
|
- (instancetype)initWithEnvelope:(OWSSignalServiceProtosEnvelope *)envelope
|
|
{
|
|
OWSAssert(envelope);
|
|
|
|
self = [super initWithUniqueId:[NSUUID new].UUIDString];
|
|
if (!self) {
|
|
return self;
|
|
}
|
|
|
|
_envelopeData = envelope.data;
|
|
_createdAt = [NSDate new];
|
|
|
|
return self;
|
|
}
|
|
|
|
- (nullable instancetype)initWithCoder:(NSCoder *)coder
|
|
{
|
|
return [super initWithCoder:coder];
|
|
}
|
|
|
|
- (OWSSignalServiceProtosEnvelope *)envelopeProto
|
|
{
|
|
return [OWSSignalServiceProtosEnvelope parseFromData:self.envelopeData];
|
|
}
|
|
|
|
@end
|
|
|
|
#pragma mark - Finder
|
|
|
|
NSString *const OWSMessageDecryptJobFinderExtensionName = @"OWSMessageProcessingJobFinderExtensionName2";
|
|
NSString *const OWSMessageDecryptJobFinderExtensionGroup = @"OWSMessageProcessingJobFinderExtensionGroup2";
|
|
|
|
@interface OWSMessageDecryptJobFinder : NSObject
|
|
|
|
@end
|
|
|
|
#pragma mark -
|
|
|
|
@interface OWSMessageDecryptJobFinder ()
|
|
|
|
@property (nonatomic, readonly) YapDatabaseConnection *dbConnection;
|
|
|
|
@end
|
|
|
|
#pragma mark -
|
|
|
|
@implementation OWSMessageDecryptJobFinder
|
|
|
|
- (instancetype)initWithDBConnection:(YapDatabaseConnection *)dbConnection
|
|
{
|
|
OWSSingletonAssert();
|
|
|
|
self = [super init];
|
|
if (!self) {
|
|
return self;
|
|
}
|
|
|
|
_dbConnection = dbConnection;
|
|
|
|
[OWSMessageDecryptJobFinder registerLegacyClasses];
|
|
|
|
return self;
|
|
}
|
|
|
|
- (OWSMessageDecryptJob *_Nullable)nextJob
|
|
{
|
|
__block OWSMessageDecryptJob *_Nullable job = nil;
|
|
[self.dbConnection readWithBlock:^(YapDatabaseReadTransaction *_Nonnull transaction) {
|
|
YapDatabaseViewTransaction *viewTransaction = [transaction ext:OWSMessageDecryptJobFinderExtensionName];
|
|
OWSAssert(viewTransaction != nil);
|
|
job = [viewTransaction firstObjectInGroup:OWSMessageDecryptJobFinderExtensionGroup];
|
|
}];
|
|
|
|
return job;
|
|
}
|
|
|
|
- (void)addJobForEnvelope:(OWSSignalServiceProtosEnvelope *)envelope
|
|
{
|
|
[self.dbConnection readWriteWithBlock:^(YapDatabaseReadWriteTransaction *_Nonnull transaction) {
|
|
[[[OWSMessageDecryptJob alloc] initWithEnvelope:envelope] saveWithTransaction:transaction];
|
|
}];
|
|
}
|
|
|
|
- (void)removeJobWithId:(NSString *)uniqueId
|
|
{
|
|
[self.dbConnection readWriteWithBlock:^(YapDatabaseReadWriteTransaction *_Nonnull transaction) {
|
|
[transaction removeObjectForKey:uniqueId inCollection:[OWSMessageDecryptJob collection]];
|
|
}];
|
|
}
|
|
|
|
+ (YapDatabaseView *)databaseExtension
|
|
{
|
|
YapDatabaseViewSorting *sorting =
|
|
[YapDatabaseViewSorting withObjectBlock:^NSComparisonResult(YapDatabaseReadTransaction *transaction,
|
|
NSString *group,
|
|
NSString *collection1,
|
|
NSString *key1,
|
|
id object1,
|
|
NSString *collection2,
|
|
NSString *key2,
|
|
id object2) {
|
|
|
|
if (![object1 isKindOfClass:[OWSMessageDecryptJob class]]) {
|
|
OWSFail(@"Unexpected object: %@ in collection: %@", [object1 class], collection1);
|
|
return NSOrderedSame;
|
|
}
|
|
OWSMessageDecryptJob *job1 = (OWSMessageDecryptJob *)object1;
|
|
|
|
if (![object2 isKindOfClass:[OWSMessageDecryptJob class]]) {
|
|
OWSFail(@"Unexpected object: %@ in collection: %@", [object2 class], collection2);
|
|
return NSOrderedSame;
|
|
}
|
|
OWSMessageDecryptJob *job2 = (OWSMessageDecryptJob *)object2;
|
|
|
|
return [job1.createdAt compare:job2.createdAt];
|
|
}];
|
|
|
|
YapDatabaseViewGrouping *grouping =
|
|
[YapDatabaseViewGrouping withObjectBlock:^NSString *_Nullable(YapDatabaseReadTransaction *_Nonnull transaction,
|
|
NSString *_Nonnull collection,
|
|
NSString *_Nonnull key,
|
|
id _Nonnull object) {
|
|
if (![object isKindOfClass:[OWSMessageDecryptJob class]]) {
|
|
OWSFail(@"Unexpected object: %@ in collection: %@", object, collection);
|
|
return nil;
|
|
}
|
|
|
|
// Arbitrary string - all in the same group. We're only using the view for sorting.
|
|
return OWSMessageDecryptJobFinderExtensionGroup;
|
|
}];
|
|
|
|
YapDatabaseViewOptions *options = [YapDatabaseViewOptions new];
|
|
options.allowedCollections =
|
|
[[YapWhitelistBlacklist alloc] initWithWhitelist:[NSSet setWithObject:[OWSMessageDecryptJob collection]]];
|
|
|
|
return [[YapDatabaseView alloc] initWithGrouping:grouping sorting:sorting versionTag:@"1" options:options];
|
|
}
|
|
|
|
+ (void)registerLegacyClasses
|
|
{
|
|
static dispatch_once_t onceToken;
|
|
dispatch_once(&onceToken, ^{
|
|
// We've renamed OWSMessageProcessingJob to OWSMessageDecryptJob.
|
|
[NSKeyedUnarchiver setClass:[OWSMessageDecryptJob class] forClassName:[OWSMessageDecryptJob collection]];
|
|
});
|
|
}
|
|
|
|
+ (void)syncRegisterDatabaseExtension:(YapDatabase *)database
|
|
{
|
|
[self registerLegacyClasses];
|
|
|
|
YapDatabaseView *existingView = [database registeredExtension:OWSMessageDecryptJobFinderExtensionName];
|
|
if (existingView) {
|
|
OWSFail(@"%@ was already initialized.", OWSMessageDecryptJobFinderExtensionName);
|
|
// already initialized
|
|
return;
|
|
}
|
|
[database registerExtension:[self databaseExtension] withName:OWSMessageDecryptJobFinderExtensionName];
|
|
}
|
|
|
|
@end
|
|
|
|
#pragma mark - Queue Processing
|
|
|
|
@interface OWSMessageDecryptQueue : NSObject
|
|
|
|
@property (nonatomic, readonly) OWSMessageDecrypter *messageDecrypter;
|
|
@property (nonatomic, readonly) OWSBatchMessageProcessor *batchMessageProcessor;
|
|
@property (nonatomic, readonly) OWSMessageDecryptJobFinder *finder;
|
|
@property (nonatomic) BOOL isDrainingQueue;
|
|
|
|
- (instancetype)initWithMessageDecrypter:(OWSMessageDecrypter *)messageDecrypter
|
|
batchMessageProcessor:(OWSBatchMessageProcessor *)batchMessageProcessor
|
|
finder:(OWSMessageDecryptJobFinder *)finder NS_DESIGNATED_INITIALIZER;
|
|
- (instancetype)init NS_UNAVAILABLE;
|
|
|
|
@end
|
|
|
|
#pragma mark -
|
|
|
|
@implementation OWSMessageDecryptQueue
|
|
|
|
- (instancetype)initWithMessageDecrypter:(OWSMessageDecrypter *)messageDecrypter
|
|
batchMessageProcessor:(OWSBatchMessageProcessor *)batchMessageProcessor
|
|
finder:(OWSMessageDecryptJobFinder *)finder
|
|
{
|
|
OWSSingletonAssert();
|
|
|
|
self = [super init];
|
|
if (!self) {
|
|
return self;
|
|
}
|
|
|
|
_messageDecrypter = messageDecrypter;
|
|
_batchMessageProcessor = batchMessageProcessor;
|
|
_finder = finder;
|
|
_isDrainingQueue = NO;
|
|
|
|
[[NSNotificationCenter defaultCenter] addObserver:self
|
|
selector:@selector(databaseViewRegistrationComplete)
|
|
name:kNSNotificationName_DatabaseViewRegistrationComplete
|
|
object:nil];
|
|
|
|
return self;
|
|
}
|
|
|
|
- (void)dealloc
|
|
{
|
|
[[NSNotificationCenter defaultCenter] removeObserver:self];
|
|
}
|
|
|
|
- (void)databaseViewRegistrationComplete
|
|
{
|
|
[self drainQueue];
|
|
}
|
|
|
|
#pragma mark - instance methods
|
|
|
|
- (dispatch_queue_t)serialQueue
|
|
{
|
|
static dispatch_queue_t queue = nil;
|
|
static dispatch_once_t onceToken;
|
|
dispatch_once(&onceToken, ^{
|
|
queue = dispatch_queue_create("org.whispersystems.message.decrypt", DISPATCH_QUEUE_SERIAL);
|
|
});
|
|
return queue;
|
|
}
|
|
|
|
- (void)enqueueEnvelopeForProcessing:(OWSSignalServiceProtosEnvelope *)envelope
|
|
{
|
|
[self.finder addJobForEnvelope:envelope];
|
|
}
|
|
|
|
- (void)drainQueue
|
|
{
|
|
dispatch_async(self.serialQueue, ^{
|
|
if ([TSDatabaseView hasPendingViewRegistrations]) {
|
|
// We don't want to process incoming messages until database
|
|
// view registration is complete.
|
|
return;
|
|
}
|
|
|
|
if (self.isDrainingQueue) {
|
|
return;
|
|
}
|
|
self.isDrainingQueue = YES;
|
|
|
|
[self drainQueueWorkStep];
|
|
});
|
|
}
|
|
|
|
- (void)drainQueueWorkStep
|
|
{
|
|
AssertOnDispatchQueue(self.serialQueue);
|
|
|
|
OWSMessageDecryptJob *_Nullable job = [self.finder nextJob];
|
|
if (!job) {
|
|
self.isDrainingQueue = NO;
|
|
DDLogVerbose(@"%@ Queue is drained.", self.tag);
|
|
return;
|
|
}
|
|
|
|
[self processJob:job
|
|
completion:^(BOOL success) {
|
|
[self.finder removeJobWithId:job.uniqueId];
|
|
DDLogVerbose(@"%@ %@ job. %lu jobs left.",
|
|
self.tag,
|
|
success ? @"decrypted" : @"failed to decrypt",
|
|
(unsigned long)[OWSMessageDecryptJob numberOfKeysInCollection]);
|
|
[self drainQueueWorkStep];
|
|
}];
|
|
}
|
|
|
|
- (void)processJob:(OWSMessageDecryptJob *)job completion:(void (^)(BOOL))completion
|
|
{
|
|
AssertOnDispatchQueue(self.serialQueue);
|
|
OWSAssert(job);
|
|
|
|
OWSSignalServiceProtosEnvelope *envelope = job.envelopeProto;
|
|
[self.messageDecrypter decryptEnvelope:envelope
|
|
successBlock:^(NSData *_Nullable plaintextData) {
|
|
|
|
// We can't decrypt the same message twice, so we need to persist
|
|
// the decrypted envelope data ASAP to prevent data loss.
|
|
[self.batchMessageProcessor enqueueEnvelopeData:job.envelopeData plaintextData:plaintextData];
|
|
|
|
dispatch_async(self.serialQueue, ^{
|
|
completion(YES);
|
|
});
|
|
}
|
|
failureBlock:^{
|
|
dispatch_async(self.serialQueue, ^{
|
|
completion(NO);
|
|
});
|
|
}];
|
|
}
|
|
|
|
#pragma mark Logging
|
|
|
|
+ (NSString *)tag
|
|
{
|
|
return [NSString stringWithFormat:@"[%@]", self.class];
|
|
}
|
|
|
|
- (NSString *)tag
|
|
{
|
|
return self.class.tag;
|
|
}
|
|
|
|
@end
|
|
|
|
#pragma mark - OWSMessageReceiver
|
|
|
|
@interface OWSMessageReceiver ()
|
|
|
|
@property (nonatomic, readonly) OWSMessageDecryptQueue *processingQueue;
|
|
@property (nonatomic, readonly) YapDatabaseConnection *dbConnection;
|
|
|
|
@end
|
|
|
|
#pragma mark -
|
|
|
|
@implementation OWSMessageReceiver
|
|
|
|
- (instancetype)initWithDBConnection:(YapDatabaseConnection *)dbConnection
|
|
messageDecrypter:(OWSMessageDecrypter *)messageDecrypter
|
|
batchMessageProcessor:(OWSBatchMessageProcessor *)batchMessageProcessor
|
|
{
|
|
OWSSingletonAssert();
|
|
|
|
self = [super init];
|
|
if (!self) {
|
|
return self;
|
|
}
|
|
|
|
OWSMessageDecryptJobFinder *finder = [[OWSMessageDecryptJobFinder alloc] initWithDBConnection:dbConnection];
|
|
OWSMessageDecryptQueue *processingQueue =
|
|
[[OWSMessageDecryptQueue alloc] initWithMessageDecrypter:messageDecrypter
|
|
batchMessageProcessor:batchMessageProcessor
|
|
finder:finder];
|
|
|
|
_processingQueue = processingQueue;
|
|
|
|
return self;
|
|
}
|
|
|
|
- (instancetype)initDefault
|
|
{
|
|
// For concurrency coherency we use the same dbConnection to persist and read the unprocessed envelopes
|
|
YapDatabaseConnection *dbConnection = [[TSStorageManager sharedManager].database newConnection];
|
|
OWSMessageDecrypter *messageDecrypter = [OWSMessageDecrypter sharedManager];
|
|
OWSBatchMessageProcessor *batchMessageProcessor = [OWSBatchMessageProcessor sharedInstance];
|
|
|
|
return [self initWithDBConnection:dbConnection
|
|
messageDecrypter:messageDecrypter
|
|
batchMessageProcessor:batchMessageProcessor];
|
|
}
|
|
|
|
+ (instancetype)sharedInstance
|
|
{
|
|
static OWSMessageReceiver *sharedInstance;
|
|
|
|
static dispatch_once_t onceToken;
|
|
dispatch_once(&onceToken, ^{
|
|
sharedInstance = [[self alloc] initDefault];
|
|
});
|
|
|
|
return sharedInstance;
|
|
}
|
|
|
|
#pragma mark - class methods
|
|
|
|
+ (void)syncRegisterDatabaseExtension:(YapDatabase *)database
|
|
{
|
|
[OWSMessageDecryptJobFinder syncRegisterDatabaseExtension:database];
|
|
}
|
|
|
|
#pragma mark - instance methods
|
|
|
|
- (void)handleAnyUnprocessedEnvelopesAsync
|
|
{
|
|
[self.processingQueue drainQueue];
|
|
}
|
|
|
|
- (void)handleReceivedEnvelope:(OWSSignalServiceProtosEnvelope *)envelope
|
|
{
|
|
// Drop any too-large messages on the floor. Well behaving clients should never send them.
|
|
NSUInteger kMaxEnvelopeByteCount = 250 * 1024;
|
|
if (envelope.serializedSize > kMaxEnvelopeByteCount) {
|
|
OWSProdError([OWSAnalyticsEvents messageReceiverErrorOversizeMessage]);
|
|
return;
|
|
}
|
|
|
|
// Take note of any messages larger than we expect, but still process them.
|
|
// This likely indicates a misbehaving sending client.
|
|
NSUInteger kLargeEnvelopeWarningByteCount = 25 * 1024;
|
|
if (envelope.serializedSize > kLargeEnvelopeWarningByteCount) {
|
|
OWSProdError([OWSAnalyticsEvents messageReceiverErrorLargeMessage]);
|
|
}
|
|
|
|
[self.processingQueue enqueueEnvelopeForProcessing:envelope];
|
|
[self.processingQueue drainQueue];
|
|
}
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|