2017-06-22 18:12:24 +02:00
|
|
|
//
|
|
|
|
// Copyright (c) 2017 Open Whisper Systems. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import "OWSOutgoingNullMessage.h"
|
|
|
|
#import "OWSSignalServiceProtos.pb.h"
|
|
|
|
#import "Cryptography.h"
|
|
|
|
#import "OWSVerificationStateSyncMessage.h"
|
|
|
|
#import "NSDate+millisecondTimeStamp.h"
|
|
|
|
#import "TSContactThread.h"
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
|
|
|
|
@interface OWSOutgoingNullMessage ()
|
|
|
|
|
|
|
|
@property (nonatomic, readonly) OWSVerificationStateSyncMessage *verificationStateSyncMessage;
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
@implementation OWSOutgoingNullMessage
|
|
|
|
|
|
|
|
- (instancetype)initWithContactThread:(TSContactThread *)contactThread
|
|
|
|
verificationStateSyncMessage:(OWSVerificationStateSyncMessage *)verificationStateSyncMessage
|
|
|
|
{
|
|
|
|
self = [super initWithTimestamp:[NSDate ows_millisecondTimeStamp]
|
|
|
|
inThread:contactThread];
|
|
|
|
if (!self) {
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
|
|
|
_verificationStateSyncMessage = verificationStateSyncMessage;
|
|
|
|
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
|
|
|
#pragma mark - override TSOutgoingMessage
|
|
|
|
|
|
|
|
- (NSData *)buildPlainTextData
|
|
|
|
{
|
|
|
|
OWSSignalServiceProtosContentBuilder *contentBuilder = [OWSSignalServiceProtosContentBuilder new];
|
|
|
|
OWSSignalServiceProtosNullMessageBuilder *nullMessageBuilder = [OWSSignalServiceProtosNullMessageBuilder new];
|
|
|
|
|
2017-06-22 20:32:06 +02:00
|
|
|
NSUInteger contentLength = self.verificationStateSyncMessage.unpaddedVerifiedLength;
|
|
|
|
|
|
|
|
OWSAssert(self.verificationStateSyncMessage.paddingBytesLength > 0);
|
2017-06-22 21:13:34 +02:00
|
|
|
|
|
|
|
// We add the same amount of padding in the VerificationStateSync message and it's coresponding NullMessage so that
|
|
|
|
// the sync message is indistinguishable from an outgoing Sent transcript corresponding to the NullMessage. We pad
|
|
|
|
// the NullMessage so as to obscure it's content. The sync message (like all sync messages) will be *additionally*
|
|
|
|
// padded by the superclass while being sent. The end result is we send a NullMessage of a non-distinct size, and a
|
|
|
|
// verification sync which is ~1-512 bytes larger then that.
|
2017-06-22 20:32:06 +02:00
|
|
|
contentLength += self.verificationStateSyncMessage.paddingBytesLength;
|
|
|
|
|
2017-06-22 18:12:24 +02:00
|
|
|
OWSAssert(contentLength > 0)
|
|
|
|
|
|
|
|
nullMessageBuilder.padding = [Cryptography generateRandomBytes:contentLength];
|
|
|
|
|
|
|
|
contentBuilder.nullMessage = [nullMessageBuilder build];
|
|
|
|
|
|
|
|
return [contentBuilder build].data;
|
|
|
|
}
|
|
|
|
|
2017-06-22 19:05:28 +02:00
|
|
|
- (BOOL)shouldSyncTranscript
|
|
|
|
{
|
|
|
|
return NO;
|
|
|
|
}
|
|
|
|
|
2017-06-22 18:12:24 +02:00
|
|
|
- (void)saveWithTransaction:(YapDatabaseReadWriteTransaction *)transaction
|
|
|
|
{
|
|
|
|
// No-op as we don't want to actually display this as an outgoing message in our thread.
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_END
|